https://github.com/jeescu/nebula
:milky_way: Experimental Node.js micro-framework for building micro-services and APIs.
https://github.com/jeescu/nebula
api boilerplate expressjs generator javascript micro-framework microservice nebulajs nodejs rdbms sql
Last synced: 3 months ago
JSON representation
:milky_way: Experimental Node.js micro-framework for building micro-services and APIs.
- Host: GitHub
- URL: https://github.com/jeescu/nebula
- Owner: jeescu
- Created: 2017-06-13T06:13:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-02T05:48:12.000Z (over 7 years ago)
- Last Synced: 2025-04-25T02:04:05.505Z (11 months ago)
- Topics: api, boilerplate, expressjs, generator, javascript, micro-framework, microservice, nebulajs, nodejs, rdbms, sql
- Language: JavaScript
- Homepage:
- Size: 67.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

> A simple NodeJS API / micro-service project generator.
### Installation
```bash
> npm install @jeescu/nebula -g
```
### Getting Started
See available command options.
```bash
> nebula --help
```
#### Create project
```bash
> nebula create my_project
```
Change dir to your project so you can execute the next available commands.
#### Creating predefined controller, model, migration and seeder files
```bash
> nebula add:model facet
> nebula add:controller facet
> nebula add:migration create_facet_table
> nebula add:seeder table_facet_seeder
```
#### Executing migrations and seeders
See [Knex](https://knexjs.org) official documentation.
#### Contributors:
- Richard Malibiran ([rmalibiran](https://github.com/rmalibiran)): core templates owner.