![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
css-phaast
Advanced tools
Light, elegant and robust css framework.
npm install css-phaast
or
yarn add css-phaast
git clone https://gitlab.com/daring-bit-assembly/saas/phaast-css-npm.git
Check Phaast CSS!
The package contains two main files (phaast.css
, phaast.js
) and three folders
Inside the css folder you'll find css files for every component.
Inside the scss folder you'll find a phaast.scss
file which imports all the files necesary to run the framework correctly, you will find the individual files for each component (components
folder) and the individual files for the modifiers of each component (tools
folder), there's a global-tool
file located inside the tools
folder which controls all the utilities.
Finally, the JS folder have individual modules that you can import or reference.
You have three ways to use the styles from css-phaast, the easiest one is to use the CDN
<head>
...
<link rel="stylesheet" type="text/css" href="https://unpkg.com/css-phaast@<version>/phaast.css">
...
</head>
Having the package locally
<head>
...
<link rel="stylesheet" type="text/css" href="<your-css-folder>/phaast.css">
...
</head>
Or if you follow the NPM route or are using SASS
@import '~phaast/scss/phaast';
If you want all the functionalities, you'll need the JS side, which controls the dropdowns, tabs, alerts, menus and some other functionalities, again, you have three ways of doing this, the easiest route is to use the CDN
<body>
...
<script type="text/javascript" src="https://unpkg.com/css-phaast@<version>/phaast.js"></script>
</body>
If you have the package locally
<body>
...
<script type="text/javascript" src="<your-js-folder>/phaast.js"></script>
</body>
If you went the NPM route
import 'css-phaast/phaast'
You can use individual components without having to import the whole package.
<head>
...
<link rel="stylesheet" type="text/css" href="https://unpkg.com/css-phaast@<version>/css/alerts.css">
...
</head>
<head>
...
<link rel="stylesheet" type="text/css" href="<your-css-folder>/alerts.css">
...
</head>
Some components need an extra JS file to manage interactivity, these are: dropdowns, alerts, tabs and menus. We can get the needed files in three different ways:
<script type="text/javascript" src="https://unpkg.com/css-phaast@<version>/phaast.alerts.js"></script>
<script type="text/javascript" src="<your-js-folder>/phaast.alerts.js"></script>
// Importing css
@import '~phaast/css/avatar.css';
// Importing sass file
@import '~phaast/scss/individual-components/avatar';
import 'css-phaast/js/phaast.dropdown.js'
Import these files in your entry js file
import 'css-phaast/scss/phaast.scss'
import 'css-phaast/phaast'
FAQs
Light, elegant and robust css framework.
The npm package css-phaast receives a total of 10 weekly downloads. As such, css-phaast popularity was classified as not popular.
We found that css-phaast demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.