$ npm pack
- npm package is created(wizexpress-1.0.0.tgz")
- Determined by name and version
package.json
"name": "wizexpress"
"version": "1.0.0"
$ npm install wizexpress-x.x.x.tgz
- create "sample.ts" file
import dayOfWeek from 'wizexpress';
const toDay = dayOfWeek(Date())
console.log(toDay);
console.log(dayOfWeek('2020-10-14'));