https://github.com/lemoncloud-io/lemoncloud-js
common js library by lemoncloud
https://github.com/lemoncloud-io/lemoncloud-js
Last synced: 11 months ago
JSON representation
common js library by lemoncloud
- Host: GitHub
- URL: https://github.com/lemoncloud-io/lemoncloud-js
- Owner: lemoncloud-io
- Created: 2018-04-05T02:07:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-06T15:26:18.000Z (over 8 years ago)
- Last Synced: 2025-08-17T20:28:46.266Z (11 months 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
# lemoncloud-js
npm 모듈 생성하고, npmjs에 모듈 등록하는 방법.
```bash
# create folder
$ mkdir lemoncloud-js
$ cd lemoncloud-js
# initialize package.json
$ npm init
# edit README
$ echo "# lemoncloud-js" >> README.md
# npm login (register if not)
$ npm login
# publish
$ npm publish
```
참고: https://eladnava.com/publishing-your-first-package-to-npm/