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

care

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

care

A simple way to add careware and donation support to your node.js modules

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

care

A simple way to add careware and donation support to your node.js modules.

CLI User

Install

$ npm install -g care
$ care

Usage: care [options]

Options:

  -h, --help     usage information
  -V, --version  version number
  -o, --login    get an access token
  -x, --logout   remove your access token

Login

Firstly, you must create a business account on Paypal and an application which care will use to pay other accounts.

$ care --login
Obtaining access_token from PayPal.
? Your application client_id : blahblahblahblahblahblah
? Your application client_secret : ****************************

Success!

Logout

$ care --logout
Remove your access_token from the local filesystem.

Using Care

Install

$ npm install --save care

Usage

Just require the package passing the details of the account you wish to receive donations:

var care = require('care') {
  name: '',
  description: '',
  email: ''
};

var message = '';
message += care;
console.log(message);

Example

Create a donate feature for your cli-app. For example, say you are creating a cli-app called nyan. You can create a donate feature like the following:

$ nyan donate
Organizer name: blahblah
Description: blahblahblah
Amount: | // you typed

Code example

var argv = process.argv;
var care = require("care");
var opt = {
  name: "blahblah",
  description: "blahblahblah",
  email: 'blahblah'
};

if (argc[2] === 'donate') {
}

Keywords

FAQs

Package last updated on 13 Jun 2015

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