Build Faster with Novaxjs2

The lightweight Node.js framework for modern web applications

const Nova = require('novaxjs2');
const app = new Nova();

// Simple route
app.get('/', (req, res) => {
  return 'Hello World!';
});

// API endpoint
app.get('/api/users', (req, res) => {
  res.json([{ id: 1, name: 'John' }]);
});

// Start server
app.at(3000, () => {
  console.log('Server running on port 3000');
});

Why Choose Novaxjs2?

Blazing Fast

Minimal overhead and optimized routing for high performance applications

Modular

Plugin system lets you extend functionality without bloat

Secure

Built-in protections against common web vulnerabilities

Simple API

Intuitive syntax that's easy to learn and use

Get Started in Seconds

npm
Yarn
npm install novaxjs2
yarn add novaxjs2

Then create your first app:

// app.js
const Nova = require('novaxjs2');
const app = new Nova();

app.get('/', (req, res) => {
  return 'Hello World!';
});

app.at(3000);