veams-bp-mock-api-endpoint

0.0.1 • Public • Published

Veams Blueprint :: Mock API Endpoint

With this blueprint you can scaffold a mock api endpoint with following options:

  1. Which methods do you want to provide by your endpoint?

Setup

  1. First of all be sure you have installed veams-cli.
  2. After that be sure your project contains a veams-cli.json.
  3. Make sure you have updated veams-cli.json to fit the needs of your project.
  4. Install the package with npm i veams-bp-mock-api-endpoint --save-dev.
  5. Reference the package in veams-cli.json by adding api to the blueprint object like so:
{
    "blueprints": {
        "api": {
            "skipImports": true,
            "prompts": "node_modules/veams-bp-mock-api-endpoint/prompts",
            "templates": "node_modules/veams-bp-mock-api-endpoint/templates"
        }
    }
}

Usage

Now you can use this blueprint with veams by executing:

veams add api server/routes/api/articles

The output in your file system will be:

└── articles
    └── controller.js
    └── index.js
    └── model.js
    └── USAGE.md

Be sure to add the snippet in USAGE.md into src/server/routes/api/index.js to register the route.

Have fun!

Package Sidebar

Install

npm i veams-bp-mock-api-endpoint

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • sebastian-fitzner