Write a custom plugin with Aurelia 2 and Lerna
In this article, We want to write a simple Bootstrap 5 plugin for Aurelia 2
and manage our packages via Lerna.
Write a custom plugin with Aurelia 2 and Lerna
In this article, We want to write a simple Bootstrap 5 plugin for Aurelia 2
and manage our packages via Lerna.
Using Puppeteer with Mocha/Jest and Aurelia 2
Puppeteer is a Node library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol. Puppeteer runs headless by default, but can be configured to run full (non-headless) Chrome or Chromium.
Most things that you can do manually in the browser can be done using Puppeteer! Here are a few examples to get you started:
Using Tailwind CSS with Aurelia 2 and Webpack
Tailwind CSS is a highly customizable, low-level CSS framework that gives you all of the building blocks you need to build bespoke designs without any annoying opinionated styles you have to fight to override.
for more information take a look at Tailwind CSS
CSS-in-JS is a styling technique where JavaScript is used to style components. When this JavaScript is parsed, CSS is generated (usually as an <style>
element) and attached to the DOM. It allows you to abstract CSS to the component level itself, using JavaScript to describe styles in a declarative and maintainable way.
In the ecosystem of some client-side libraries, such as React, this method is very common. So we decided to discuss how to use CSS-in-JS in Aurelia.