Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hull-connector-tester

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hull-connector-tester

This is a cli utility which runs multiple [checks](./src/checks) on the connector code base to make sure it complies with official Hull Connector standards.

  • 0.0.20
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-71.43%
Maintainers
1
Weekly downloads
 
Created
Source

Hull Connector Tester

This is a cli utility which runs multiple checks on the connector code base to make sure it complies with official Hull Connector standards.

When any of the check fails the command exits with error code to fail CI job. The main goal of the tool is to easily enforce specific best standards across wide connectors code base.

You can think of it as code quality check tool, maybe we will even have badges/shields (as http://shields.io/) in future :)

Continuous Integration usage

All official Hull connectors run latest version of hull-connector-tester on each CI build.

This is how the Circle CI configuration file (.circleci/config.yml) last step looks like:

- run: npm i --no-save --no-cache hull-connector-tester@latest && ./node_modules/.bin/hull-connector-tester

Manual usage

To manually test the Connector code base, the tool should be installed globally and run in connector directory:

cd hull-connector-name/

npm i -g --no-cache hull-connector-tester@latest && hull-connector-tester

What are current checks?

Please review all files in src/checks directory. Each function perform one check and the purpose is descibed in the docblock.

How to add new check?

  1. Add new file in src/checks directory with the name of the check
  2. Create a function taking no arguments and returning true in case of success or string in case of error with the error message
  3. Export this new check in src/checks/index.js
  4. Bump version and update CHANGELOG.md

FAQs

Package last updated on 30 Nov 2018

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