anubis-project
v1.0.22
Published
Anubis is a project scaffolding that can be stood up with only a few commands and provides a full webpack environment, scss loader, router, and unit testing. The Anubis framework is built to work with the Osiris framework.
Maintainers
Readme
Anubis is a project scaffolding that can be stood up with only a few commands and provides a full webpack environment, scss loader, router, and unit testing. The Anubis framework is built to work with the Osiris framework.
Note: Osiris currently does not have public documentation.
Create empty npm project
mkdir <projectname>
cd <projectname>
touch package.jsonPopulate package.json
{
"name": "<projectname>",
"version": "0.0.0"
}Install Anubis
npm install anubis-projectInit
npx anubis initRun Webpack Dev Server
npx anubis startBuild Dev Files
Builds the css and js files into an uncompressed state
npx anubis build-devBuild Production Files
Builds the css and js files into an compressed state
npx anubis buildRun Unit Tests
npx anubis test