Chinese Zodiac
npm install chinese-zodiacA Node.js package that will request birth year and then response the chinese zodiac information
First, install the package using npm:
npm install chinese-zodiac
Then, require the package and use it like so:
const getCZ = require('chinese-zodiac');
Getting the result
const cz = getCZ(1968)
Logging the result
console.log(cz);
MIT