개인 자료 정리 홈페이지 입니다.

Note > npm cli 명령어 모음npm help

By a3040, Published on Invalid Date

npm help

npm <command>


Usage:


npm install    install all the dependencies in your project

npm install <foo> add the <foo> dependency to your project

npm test      run this project's tests

npm run <foo>   run the script named <foo>

npm <command> -h  quick help on <command>

npm -l       display usage info for all commands

npm help <term>  search for help on <term> (in a browser)

npm help npm    more involved overview (in a browser)


All commands:


  access, adduser, audit, bugs, cache, ci, completion,

  config, dedupe, deprecate, diff, dist-tag, docs, doctor,

  edit, exec, explain, explore, find-dupes, fund, get, help,

  hook, init, install, install-ci-test, install-test, link,

  ll, login, logout, ls, org, outdated, owner, pack, ping,

  pkg, prefix, profile, prune, publish, query, rebuild, repo,

  restart, root, run-script, search, set, shrinkwrap, star,

  stars, start, stop, team, test, token, uninstall, unpublish,

  unstar, update, version, view, whoami

Note > npm cli 명령어 모음npm uninstall

By a3040, Published on Invalid Date

패키지를 제거하기 위한 명령어입니다.

npm uninstall [패키지명] //로컬 프로젝트의 패키지 제거입니다.

npm uninstall [패키지명] -g //글로벌 패키지 제거입니다.


PS C:\Users\HANSUNG\Documents\work\tistory\tistory_openapi\ex4> npm list -g

C:\Users\HANSUNG\AppData\Roaming\npm

├── @babel/cli@7.21.0

├── @babel/core@7.21.4

├── @vue/cli@5.0.8

├── axios@1.4.0

├── create-react-app-ssr@3.0.0


> npm uninstall axios -g


PS C:\Users\HANSUNG\Documents\work\tistory\tistory_openapi\ex4> npm list -g

C:\Users\HANSUNG\AppData\Roaming\npm

├── @babel/cli@7.21.0

├── @babel/core@7.21.4

├── @vue/cli@5.0.8

├── create-react-app-ssr@3.0.0


Note > npm cli 명령어 모음npm list

By a3040, Published on Invalid Date

npm list //현재 package.json 설치 프로젝트의 설치된 패키지 목록을 보여줍니다

npm list -g //글로벌설 설치된 패키지 목록을 보여줍니다

npm list

현 프로젝트에 설치된 패키지 목록을 보여줍니다.

npm list -g

어느 프로젝트에서나 사용할수 있는 글로벌 설치된 패키지 목록을 보여줍니다.


Note > 리눅스 명령어 모음ss

By a3040, Published on Invalid Date

시스템의 소켓 상태와 네트워크 연결 정보를 확인하는 명령어


linux ss -nltp



-a, --all : 현재 시스템에서 열린 모든 소켓을 표시합니다.

-t, --tcp : TCP 프로토콜을 사용하는 소켓 정보만을 표시합니다.

-u, --udp : UDP 프로토콜을 사용하는 소켓 정보만을 표시합니다.

-n, --numeric : IP 주소와 포트 번호를 숫자로만 표시합니다.

-l, --listening : 대기 중인 소켓 정보만을 표시합니다.

-p, --processes : 각 소켓을 사용하는 프로세스 정보를 함께 표시합니다.

-e, --extended : 보다 자세한 정보를 표시합니다.