Axcora is a modern, open source Static Site Generator & CSS framework.
This guide walks you through installation, setup, and daily use—making your experience as smooth.
Clone the repository and install dependencies:
git clone https://github.com/mesinkasir/axcora-starter.git
cd axcora-starter
npm install
Before using the CLI everywhere, compile and link it globally:
npm install axcora
This step will:
axcora
command anywhereNote: You only need to do this once. On updates, repeat to refresh the global CLI.
After the CLI is linked, you no longer need to use npm scripts for core workflow.
Just use the CLI directly!
axcora dev # Launch native development server (hot reload, recommended for normal development)
axcora build # Build your static site for production
axcora serve # Serve the built site (public folder) locally
axcora init myproject # Create new axcora project
axcora new "Post Title" # Create a new blog post
axcora help # Shows CLI help and command list
You can run these commands from any terminal, in your project directory.
npm install # Install dependencies (once)
npm install axcora # Install axcora dependencies (once)
npm run axcora # Build & link CLI globally (once or on updates)
axcora dev # Develop your static site
axcora build # Build for production
axcora serve # Preview build output locally
axcora new "Title" # Create new blog post/page
Command | Description |
---|---|
axcora dev |
Start development server (native hot reload) |
axcora build |
Build the static site for production |
axcora serve |
Serve the public folder locally for preview |
axcora new |
Create new blog post |
axcora init |
Create new axcora project |
axcora help |
Show CLI help and available commands |
npm run axcora
again to rebuild and update the global CLI.npm run ...
scripts defined in package.json
.axcora
command is not found, make sure you’ve run npm run axcora
or npm run install-global
.Enjoy building with Axcora SSG + CSS Framework!
Contributions, feedback, and collaborations are welcome — see the repo for details.