bootstrap-api-express

1.1.1 • Public • Published

bootstrap-api-express

With this package you can create a basic structure of api project with express and body-parser.

The package crete the next structure:

.
|____.git
|____.gitignore
|____components
| |____example
| | |____controller.js
| | |____network.js
|____index.js
|____package-lock.json
|____package.json
|____response
| |____response.js
 

Install

npm install -g bootstrap-api-express

Usage

mkdir api
cd api

Execute bootstrap-api-express specifying the end-points you want to create, for example users and chats.

bootstrap-api-express users chats

The package will create the end-points for user and chats, if you don't specify anything the package will create the example end-point.

Run the next command and check the end-points created.

node index.js
GET    api/users/
POST   api/users/
DELETE api/users/:id
UPDATE api/users/:id

GET    api/chats/
POST   api/chats/
DELETE api/chats/:id
UPDATE api/chats/:id

Contributing

If someone wants to add or improve something, I invite you to collaborate directly in this repository: bootstrap-api-express

License

create-api-express is released under the MIT License.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.1
    0
    • latest

Version History

Package Sidebar

Install

npm i bootstrap-api-express

Weekly Downloads

0

Version

1.1.1

License

MIT

Unpacked Size

12.1 kB

Total Files

6

Last publish

Collaborators

  • bautistaj