An open API service indexing awesome lists of open source software.

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

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/