npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ecs-node-client

v0.3.3

Published

npm / node module to transfer dependency information to TrustSource server.

Downloads

29

Readme

TrustSource ecs-node-client

Travis build status Version Downloads Downloads MIT License

npm package

TrustSource node client

node module to transfer dependency information to TrustSource server.

Requirements

  • node >= 6.17.0
  • debuglog >= 1.0.1
  • npm >= 3.10.10
  • request >= 2.88.0
  • semver >= 6.0.0
  • yargs >= 13.2.2

Installation

Run: npm install ecs-node-client

You can add install_and_scan script to the package.json file to install and transfer dependency information using one command npm run install_and_scan:

"scripts": {
  "install_and_scan": "npm install && ecs-node-client -u userName -k apiKey -p Project"
},

To store your credentials for automated transfer you may create .ecsrc.json in your project directory or in your home directory to set credentials globally (not recommended!)

.ecsrc.json example:

{
  "userName": "UserName",
  "apiKey": "apiKey",
  "url": "https://app.trustsource.io",
  "project": "Project Description"
}

Usage

You also may initiate transfer to TrustSource server manually by executing following command via terminal:

node_modules/.bin/ecs-node-client
node_modules/.bin/ecs-node-client -u userName -k apiKey -p Project
node_modules/.bin/ecs-node-client -c config.json
npm / node module to transfer dependency information to TrustSource server.

Options:
  --userName, -u  UserName                                           [default: null]
  --apiKey, -k    apiKey                                             [default: null]
  --project, -p   Project name                                       [default: null]
  --branch, -b    Scan branch                                        [default: null]
  --tag, -t       Scan tag                                           [default: null]
  --url           url                                                [default: null]
  --config, -c    Config path                                        [default: null]
  --proxy         Proxy url like 'http://user:password@host:port'    [default: null]
  --version, -v   Prints a version                                   [default: false]
  --debug         debug                                              [default: false]
  --simulate      simulate                                           [default: false]
  --meteor        meteor                                             [default: false]
  --help          Prints a usage statement                           [boolean]

Changelog

0.3.3

  • Support usage of scan meta params: branch and tag inside Options definition

0.3.2

  • Skip npmDependency without names

0.3.1

  • Update travis config

0.3.0

  • Update dependency to resolve vulnerabilities

0.2.5

  • Added proxy support and config

0.2.4

  • Update travis config

0.2.3

  • Updated README.md with app.trustsource.io

0.2.2

  • Updated default url to app.trustsource.io

0.2.1

  • Added windows support
  • Fixed json

0.2.0

  • Removed:
    • options: --credentials and --credentialsFile instead you should use --config.
    • option --baseUrl instead you should use --url.
  • Added:
    • option --config. It is similar to credentials but it will contains any config information.
    • option --url. It is similar to baseUrl.
    • option --apiKey and --userName so it will be unnecessary to create .ecsrc.json file.
    • options --version and --help.
    • options shortcuts.

License

MIT