Rails On Node: Opinionated Node.js Framework
Check out the API Documentation: https://railsonnode.com/
Stable Version 1.3.2
Requirements
- Node.js >= 8
- Redis >= 4
Features
- Create a new multithread Node.js server with Pug templating with 8 threads (Ruby on Rails has 5 for their server's scalibity)
- Setup your own database (any SQL database or MongoDB)
- Generate new api controllers
- Generate new api versions
- Creates automatic API documentation for endpoints on creation with no extra configuration
- Creates automatic unit tests for endpoints on creation with no extra configuration
- Generate new pages with assets with a custom route with code splitting
- Use serverside React or Vanilla JS (JQuery, etc.)
Coming Soon
- Generate server side Angular 4 Application
- Generate server side Vue Application
Installation
// brew install redis// Must have redis running on default port 6379: redis-servernpm i -g rails-on-nodenpm i -g sequelize-clinpm i -g mongoose-model-clinode-rails create <Your project>node-rails setup-data-base <Your database type [sql *or* mongodb]>node-rails new-api-controller usersnode-rails new-page blogs '/blogs' // Add new routenpm installnpm run build:prodnpm start
CLI Documentation
// For all commandsnode-rails // For a single commandnode-rails <command-name> --help