New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@norest/cli

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@norest/cli

A not only REST interface.

  • 0.3.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12
increased by500%
Maintainers
1
Weekly downloads
 
Created
Source

Install

Get it from npm:

npm i @norest/cli -g

Getting started

Spin up a default server (file system storage):

norest

Configuration

Or configure it to your needs:

  • -p = Which port to use (default: 3030)
  • --fixed = Set this to true, to disallow adding new index fragments (default: false).
  • --path = The base path to expose the rest api (default: api).
  • --websocket.<<prop>> = All configurations for websocket.
  • --rest.<<prop>> = All configurations for the rest interface.
  • --auth.<<prop>> = All configurations for the authentication.
  • --connector.<<prop>> = All configurations for the file or database connector.

Example to start with authentication enabled:

norest serve --auth.enabled true

Example to start with a Mongo DB:

norest serve --connector.name mongodb --connector.url "mongodb://127.0.0.1:27017/test"

Note: NoREST only works with mongodb Sharding, single mongodb nodes are not supported.

Configuration file

You could also create a .norestrc.json, yaml or .js in the root directory and store/export the configuration there.

{
  "connector": {
    "name": "mongodb",
    "url": "mongodb://127.0.0.1:27017/test",
    "collection": "norest",
    "createCollectionNotExisting": true
  },
  "websocket": {
    "enabled": true
  },
  "auth": {
    "cookieName": "auth",
    "userProperty": "sub"   
  },
  "path": "api",
  "fixed": false
}

By default the noREST nestjs implementation supports two connectors: mongoDB and file. File is the default configuration but only suitable for non high load.

Plugins

Plugins can be added to an Javascript configuration file only. They are based on the module infrastructure of Nestjs. Configuration can be passed to the calling register() function.

const AuthProxyModule = require('@norest/plugin-auth-proxy').AuthProxyModule;

module.exports = {
  plugins: [AuthProxyModule.register({
    github: {
      client_id: '22e26fceea63a8ace68f',
      redirect_uri: 'http://localhost:3031/github/auth',
      client_secret: 'xyz',
    }
  })]
};

There is currently only two official plugin:

Env variables

Each of the mentioned configuration can be also be parsed as a ENV var. Use the prefix NOREST_ and replace dots with underscores then:

env.NOREST_AUTH_COOKIENAME = "authorization"

FAQs

Package last updated on 18 Aug 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc