Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/laynef/railsonnode

Scalable opinionated Node.js Framework based on Ruby on Rails with automatic API docs, server-side React, auto-generators, and code splitting.
https://github.com/laynef/railsonnode

framework javascript node ruby-on-rails

Last synced: about 1 month ago
JSON representation

Scalable opinionated Node.js Framework based on Ruby on Rails with automatic API docs, server-side React, auto-generators, and code splitting.

Awesome Lists containing this project

README

        

# 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

```bash
// brew install redis
// Must have redis running on default port 6379: redis-server
npm i -g rails-on-node
npm i -g sequelize-cli
npm i -g mongoose-model-cli
node-rails create
node-rails setup-data-base
node-rails new-api-controller users
node-rails new-page blogs '/blogs' // Add new route
npm install
npm run build:prod
npm start
```

## CLI Documentation

```bash
// For all commands
node-rails

// For a single command
node-rails --help
```