A npm module facilitating base conversions between binary, decimal, hexadecimal, and octal in Javasctipt.
npm install my-base-convertorjavascript
npm init
`
- Install the package by running ( in your terminal ) :
`javascript
npm install my-base-convertor
`
## Usage
After installing the package, you can use it in your projects by requiring it.Write the below code under your index.js( or as your file name ) file.
`javascript
const calculateAge = require('my-base-convertor');
const converter = new BaseConversion();
converter.performConversion();
`
Then run the below command ( in your terminal ) :
`javascript
node index.js
``