codices v0.2.2
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
9 months ago
9 months ago
9 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
11 months ago