codices
v0.2.2
Published
Códices, Sass Framework.
Downloads
88
Maintainers
Readme
Códices
What is Códices?
Codices is an open-source framework developed with the CSS engine Sass. Its flexibility allows you to develop everything from a UI to a library or design system quickly and cleanly. You can customize the source code freely and intuitively.
How does it work?
Codices has a folder structure that contains the framework's elements separately.
Install Códices
With npm
npm create codices
Whith npx
npx codices
Usage
Copy the following script into package.json
as shown below:
...
"scripts": {
...
"codices": "node node_modules/codices/dist/index.js"
};
...
Then run the following command in the terminal:
npm run codices
This will update the necessary scripts for using Codices in the package.json
file:
...
"scripts": {
...
"codices": "node node_modules/codices/dist/index.js",
"sass": "sass --watch codices/scss:codices/styles"
};
...
Additionally, it will create a copy of the source code in Sass, allowing you to start working with it