vue-wait
Complex Loader and Progress Management for Vue/Vuex and Nuxt Applications
파일 탐색기
- npmpublish.yml
- FUNDING.yml
- vue-wait-next.js
- vue-wait-v2.js
- index.js
- main.vue
- index.js
- main.vue
- index.js
- main.vue
- index.js
- main.vue
- index.js
- vue-wait-plugin.template.js
- logo.png
- logo.sketch
- vue-ui-install.png
- vue-wait-2.gif
- vue-wait.gif
- vuex-dev-tools.png
- v-wait.vue
- wait.js
- matcher.js
- index.d.ts
- vue.d.ts
- store.js
- helpers.js
- utils.js
- vue-wait.js
- .babelrc
- .eslintignore
- .eslintrc.js
- .gitignore
- .travis.yml
- CHANGELOG.md
- index.js
- LICENSE
- package.json
- README.md
- webpack.config.js
- yarn.lock
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
createUser
설명 보기 ▼
createUser
PostgreSQL 사용자(역할)를 생성.
더 많은 정보: <https://www.postgresql.org/docs/current/app-createuser.html>.
createuser --interactive {{username}}
대화형으로 사용자를 생성:
createuser {{username}}
특별한 권한 없이 사용자를 생성:
createuser {{[-s|--superuser]}} {{username}}
슈퍼유저를 생성:
func
설명 보기 ▼
func
Azure Functions 핵심 도구: Azure Functions를 로컬에서 개발하고 테스트.
로컬 함수는 라이브 Azure 서비스에 연결할 수 있고, Azure 구독에 함수 앱을 배포할 수 있음.
더 많은 정보: <https://learn.microsoft.com/azure/azure-functions/functions-run-local>.
func init {{project}}
새로운 함수 프로젝트를 생성:
func new
새로운 함수 생성:
func start
로컬에서 함수 실행:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
설명 보기 ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
yarn
설명 보기 ▼
yarn
JavaScript 및 Node.js 패키지 대체 관리자.
더 많은 정보: <https://yarnpkg.com/cli>.
yarn global add {{module_name}}
전역적으로 모듈 설치:
yarn install
`package.json` 파일에 참조된 모든 의존성을 설치 ( `install`은 선택 사항입니다):
yarn add {{module_name}}@{{version}}
모듈을 설치하고 `package.json` 파일에 대한 의존성으로 저장 (개발 전용 의존성으로 추가하려면 `--dev` 추가):
script
설명 보기 ▼
script
터미널 출력을 파일로 기록합니다.
더 많은 정보: <https://manned.org/script>.
script
현재 디렉토리의 `typescript`라는 이름의 파일에 새 세션 기록:
exit
사용자 지정 파일 경로에 새 세션 기록:
script {{path/to/session.out}}
기존 파일에 추가하여 새 세션 기록:
