Socket
Socket
Sign inDemoInstall

forge-node-cli

Package Overview
Dependencies
277
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    forge-node-cli

Forge a nodejs express project with server and database service layer


Version published
Weekly downloads
1
decreased by-90.91%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Forge CLI

Forge is a cli tool that provides a scaffolded approach to building nodejs,express API's bundled with knex and postgres database service layer.

Version

Features

  • Scaffolds a Node.js/express.js API project
  • Generate Express service layer to spin multiple servers
  • Express server comes with configurable middlewares inlcuding cors
  • Comes with Knex.js Built in

Usage

npm install -g forge-node-cli
forge-node-cli create-project myExpressProject

Commands

forge create-project PROJECTNAME

Scaffolds a fresh Forge express project

USAGE
  $ forge create-project PROJECTNAME [-h]

ARGUMENTS
  PROJECTNAME  Project Name

FLAGS
  -h, --help  Show CLI help.

DESCRIPTION
  Scaffolds a fresh Forge express project

EXAMPLES
  $ forge create-project myNewProject

See code: src/commands/create-project/index.ts

forge help [COMMANDS]

Display help for forge.

USAGE
  $ forge help [COMMANDS] [-n]

ARGUMENTS
  COMMANDS  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for forge.

See code: @oclif/plugin-help

forge plugins

List installed plugins.

USAGE
  $ forge plugins [--json] [--core]

FLAGS
  --core  Show core plugins.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  List installed plugins.

EXAMPLES
  $ forge plugins

See code: @oclif/plugin-plugins

forge plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ forge plugins:add plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -s, --silent   Silences yarn output.
  -v, --verbose  Show verbose yarn output.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ forge plugins:add

EXAMPLES
  $ forge plugins:add myplugin 

  $ forge plugins:add https://github.com/someuser/someplugin

  $ forge plugins:add someuser/someplugin

forge plugins:inspect PLUGIN...

Displays installation properties of a plugin.

USAGE
  $ forge plugins:inspect PLUGIN...

ARGUMENTS
  PLUGIN  [default: .] Plugin to inspect.

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Displays installation properties of a plugin.

EXAMPLES
  $ forge plugins:inspect myplugin

See code: @oclif/plugin-plugins

forge plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ forge plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -s, --silent   Silences yarn output.
  -v, --verbose  Show verbose yarn output.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ forge plugins:add

EXAMPLES
  $ forge plugins:install myplugin 

  $ forge plugins:install https://github.com/someuser/someplugin

  $ forge plugins:install someuser/someplugin

See code: @oclif/plugin-plugins

Links a plugin into the CLI for development.

USAGE
  $ forge plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

FLAGS
  -h, --help          Show CLI help.
  -v, --verbose
      --[no-]install  Install dependencies after linking the plugin.

DESCRIPTION
  Links a plugin into the CLI for development.
  Installation of a linked plugin will override a user-installed or core plugin.

  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
  command will override the user-installed or core plugin implementation. This is useful for development work.


EXAMPLES
  $ forge plugins:link myplugin

See code: @oclif/plugin-plugins

forge plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ forge plugins:remove plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ forge plugins:unlink
  $ forge plugins:remove

EXAMPLES
  $ forge plugins:remove myplugin

forge plugins:reset

Remove all user-installed and linked plugins.

USAGE
  $ forge plugins:reset [--hard] [--reinstall]

FLAGS
  --hard       Delete node_modules and package manager related files in addition to uninstalling plugins.
  --reinstall  Reinstall all plugins after uninstalling.

See code: @oclif/plugin-plugins

forge plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ forge plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ forge plugins:unlink
  $ forge plugins:remove

EXAMPLES
  $ forge plugins:uninstall myplugin

See code: @oclif/plugin-plugins

forge plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ forge plugins:unlink plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ forge plugins:unlink
  $ forge plugins:remove

EXAMPLES
  $ forge plugins:unlink myplugin

forge plugins:update

Update installed plugins.

USAGE
  $ forge plugins:update [-h] [-v]

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Update installed plugins.

See code: @oclif/plugin-plugins

forge-node-cli create-project PROJECT NAME

Scaffolds a fresh Nodejs express project

USAGE
  $ forge-node-cli create-project PROJECT NAME

ARGUMENTS
  PROJECT NAME  Name of project to create

OPTIONS
  -h, --help  show CLI help

EXAMPLE
  forge-node-cli create-project myNewExpressProject

Keywords

FAQs

Last updated on 09 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc