Skip to content

A simple and small boilerplate for NodeJS with Express

License

Notifications You must be signed in to change notification settings

uselessdev/expressive

Repository files navigation

Expressive

Code Style Software License Codacy grade

Running and up

git clone git@github:uselessdev/expressive.git <your-app>
cd <your-app>
yarn # npm install
cp .env.example .env # You need te confire your database connection here

Updates

Expressive no longer has database configurations, authentication and page rendering, is now a simple boilerplate that proposes a simpler structure to handle an API application.

Project

├── app
│   ├── Authors
│   │   ├── controller.js
│   │   ├── index.js
│   │   ├── repository.js
│   │   └── routes.js
│   ├── Books
│   │   ├── controller.js
│   │   ├── index.js
│   │   ├── repository.js
│   │   ├── request.js
│   │   └── routes.js
│   ├── Home
│   │   ├── controller.js
│   │   ├── index.js
│   │   └── routes.js
│   └── Routes.js
├── bootstrap
│   └── app.js
├── config
│   └── app.js
├── LICENSE
├── package.json
├── README.md
├── server.js
├── tests
│   ├── books.test.js
│   └── index.test.js
└── yarn.lock

LICENSE

License

About

A simple and small boilerplate for NodeJS with Express

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •