Quick Start
Get up and running with Axiom Genesis in minutes.
Step 1: Create a New Project
axiom-genesis create my-project
cd my-project
Step 2: Configure Your Project
Edit your project configuration in axiom-genesis.config.js:
module.exports = {
projectName: 'my-project',
version: '1.0.0',
environment: 'development'
};
Step 3: Start Development
npm start
Your application will be available at http://localhost:3000
Step 4: Build for Production
When you're ready to deploy:
npm run build
What's Next?
- Explore the Basic Usage Guide
- Read the Advanced Features Guide
- Check out the API Reference
Example Project
Here's a simple example to get you started:
import { AxiomGenesis } from 'axiom-genesis';
const app = new AxiomGenesis();
app.onMessage((message) => {
console.log('Received:', message);
});
app.start();
Happy coding! 🚀