anubis-project

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.

Usage no npm install needed!

<script type="module">
  import anubisProject from 'https://cdn.skypack.dev/anubis-project';
</script>

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.json

Populate package.json

{
    "name": "<projectname>",
    "version": "0.0.0"
}

Install Anubis

npm install anubis-project

Init

npx anubis init

Run Webpack Dev Server

npx anubis start

Build Dev Files

Builds the css and js files into an uncompressed state

npx anubis build-dev

Build Production Files

Builds the css and js files into an compressed state

npx anubis build

Run Unit Tests

npx anubis test