Packaged Node.js REST API, ready to use with major databases.
Choose the database you need and prepare your API in a single command.
Featuring simple route and controller examples that you can fully customize and extend.
Clone or download the repository.
$ cd node-veins$ npm run veins-init$ npm install$ npm start
- MongoDB
- Firebase
- Mysql
- PostgreSQL
- Oracle
- SQL Server
- Routing
- Models
- Controllers
- Configuration
- Views
A simple database schema of products with a name and a price. Example in JSON:
{"products": [
{
"name": "Banana",
"price": 10
},
{
"name": "Apple",
"price": 20
},
]}
Veins is MIT licensed.