Socket
Book a DemoInstallSign in
Socket

@4geit/swg-account-path

Package Overview
Dependencies
Maintainers
3
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@4geit/swg-account-path

add an account endpoint to your API

latest
npmnpm
Version
1.31.2
Version published
Maintainers
3
Created
Source

@4geit/swg-account-path npm version

add an account endpoint to your API

Installation

  • A recommended way to install @4geit/swg-account-path is through npm package manager using the following command:
npm i @4geit/swg-account-path --save

Or use yarn using the following command:

yarn add @4geit/swg-account-path
  • In your swagger file, you need to add a reference to the SwgAccountPath definition under the paths property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
paths:
  /account:
    $ref: ../../node_modules/@4geit/swg-account-path/swagger.yaml#/definitions/SwgAccountPath
# ...

And you will also need to add the path to the controllers folder of the swg-account-path package so that swagger-node will find the relevant controller to use. Edit the file /config/default.yaml and add two new paths to the properties mockControllersDirs and controllersDirs as illustrated below:

swagger:
  # ...
  bagpipes:
    _router:
      # ...
      mockControllersDirs:
        # ...
        - node_modules/@4geit/swg-account-path/mocks
        # ...
      controllersDirs:
        # ...
        - node_modules/@4geit/swg-account-path/controllers
        # ...

FAQs

Package last updated on 14 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts