https://github.com/nrcool/my-test-package-one
https://github.com/nrcool/my-test-package-one
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nrcool/my-test-package-one
- Owner: nrcool
- Created: 2021-11-30T12:17:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-30T12:56:49.000Z (over 4 years ago)
- Last Synced: 2025-05-07T23:02:33.379Z (about 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## first npm package
### my-test-package-one
## installation:
``` js
npm i my-test-package-one
```
## Usage:
* CommonJS Syntax
```js
const {addition,multiply} = require("my-test-package-one")
addition(2,3)
multiply(3,4)
```
* ES6 Syntax
```js
import {addition,multiply} from "my-test-package-one"
addition(2,3)
multiply(3,4)
```