@oglabs/lordjs
v1.0.0
Published
A Rails-inspired Node.js web framework
Maintainers
Readme
LordJS
A Rails-inspired Node.js web framework with TypeScript support.
Installation
npm install lordjsQuick Start
import { Application } from 'lordjs';
const app = new Application();
const router = app.getRouter();
router.get('/hello', (req, res) => {
res.json({ message: 'Hello from LordJS!' });
});
app.start(3000);Features
- Express-based routing
- TypeScript support
- Rails-like conventions
- More features coming soon!
License
ISC
