Weekly downloads
Readme
A Node CommonJS compatible wrapper for the Name That Color library (ntc js) - http://chir.ag/projects/ntc/
npm install ntcjs --save
const ntc = require('ntcjs');
const n_match = ntc.name('#6195ED');
n_rgb = n_match[0]; // RGB value of closest match
n_name = n_match[1]; // Text string: Color name
n_exactmatch = n_match[2]; // True if exact color match
console.log(n_match); // [ '#6495ED', 'Cornflower Blue', false ]
This is a live demo of the original ntcjs library
http://chir.ag/projects/name-that-color/#6195ED
Make sure you install the necessary dev dependencies needed to run the tests:
npm install
Then run the tests
npm test
All credit goes to Chirag Mehta for creating the original ntc.js library.
FAQs
A Node CommonJS compatible wrapper for the Name That Color library (ntc js) - http://chir.ag/projects/ntc/
The npm package ntcjs receives a total of 494 weekly downloads. As such, ntcjs popularity was classified as not popular.
We found that ntcjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.