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

binize

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

binize

binize

1.0.4
unpublished
latest
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created

binize

Easy fire node functions defined into a file via command-line.

Have you ever needed a quick way to fire an API call through command line? I have.

Usage

Install:

yarn add binize

Require and apply:

const service = module.exports = {
    myFunction: async ({ key, anotherKey }) => {
        return [key, anotherKey];
    },
};

require('binize')(service);

Run:

node file.js myFunction --key value --anotherKey anotherValue

FAQs

Package last updated on 26 Oct 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