chiitiler
A tiny raster tile server for MapLibre styles.
파일 탐색기
- container.yml
- npm.yml
- test:benchmark.yml
- test:build.yml
- test:integration.yml
- test:quality.yml
- test:unit.yml
- FUNDING.yml
- cdk.ts
- cdk-stack.ts
- cdk.test.ts
- .gitignore
- .npmignore
- cdk.json
- jest.config.js
- package-lock.json
- package.json
- README.md
- tsconfig.json
- 0.pbf
- 0.pbf
- 1.pbf
- 3.pbf
- 2.pbf
- 3.pbf
- 6.pbf
- 5.pbf
- 6.pbf
- 13.pbf
- 12.pbf
- 13.pbf
- 11.pbf
- 12.pbf
- 13.pbf
- 27.pbf
- 25.pbf
- 26.pbf
- 27.pbf
- 25.pbf
- 26.pbf
- 27.pbf
- 23.pbf
- 24.pbf
- 25.pbf
- 22.pbf
- 23.pbf
- 24.pbf
- 25.pbf
- 26.pbf
- 27.pbf
- metadata.json
- school.pmtiles
- bright.json
- school.mbtiles
- school.pmtiles
- style.json
- file.test.ts
- file.ts
- gcs.ts
- index.test.ts
- index.ts
- memory.test.ts
- memory.ts
- s3.ts
- index.ts
- mercator.ts
- pool.ts
- rasterize.ts
- camera.ts
- clip.ts
- tiles.ts
- debug.ts
- index.test.ts
- index.ts
- utils.ts
- cog.ts
- fs.ts
- gcs.test.ts
- gcs.ts
- http.test.ts
- http.ts
- index.test.ts
- index.ts
- mbtiles.ts
- path.test.ts
- path.ts
- pmtiles.test.ts
- pmtiles.ts
- s3.test.ts
- s3.ts
- userAgent.ts
- cli.test.ts
- cli.ts
- gcs.test.ts
- gcs.ts
- index.ts
- main.ts
- s3.test.ts
- s3.ts
- bench-style.json
- benchmark.ts
- compare-benchmarks.ts
- integration.test.ts
- .dockerignore
- .gitignore
- .node-version
- BENCHMARK.md
- docker-compose.yml
- docker-entrypoint.sh
- Dockerfile
- LICENSE
- logo.svg
- package-lock.json
- package.json
- README.md
- tsconfig.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cdk
설명 보기 ▼
cdk
AWS Cloud 개발 키트 (CDK)용 CLI.
더 많은 정보: <https://docs.aws.amazon.com/cdk/latest/guide/cli.html>.
cdk ls
애플리케이션의 스택 나열:
cdk synth {{stack_name}}
Synthesize and print the CloudFormation template for the specified stack(s):
cdk deploy {{stack_name1 stack_name2 ...}}
하나 이상의 스택을 배포:
docker run
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
node
설명 보기 ▼
node
서버 측 JavaScript 플랫폼 (Node.js).
더 많은 정보: <https://nodejs.org/docs/latest/api/cli.html#options>.
node {{path/to/file}}
JavaScript 파일 실행:
node
REPL(대화형 셸) 시작:
node --watch {{path/to/file}}
지정된 파일을 실행하고 가져온 파일이 변경될 때 프로세스를 재시작 (Node.js 버전 18.11+ 필요):
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:
npx
설명 보기 ▼
npx
이 명령은 `npm exec`의 별칭입니다.
tldr npm exec
자세한 내용은 원본 명령을 참고하세요:
size
설명 보기 ▼
size
바이너리 파일 내부 섹션의 크기를 표시합니다.
더 많은 정보: <https://sourceware.org/binutils/docs/binutils/size.html>.
size {{path/to/file}}
주어진 오브젝트 또는 실행 파일의 섹션 크기 표시:
size {{[-o|--radix=8]}} {{path/to/file}}
주어진 오브젝트 또는 실행 파일의 섹션 크기를 [o]팔진수로 표시:
size {{[-d|--radix=10]}} {{path/to/file}}
주어진 오브젝트 또는 실행 파일의 섹션 크기를 [d]십진수로 표시:
clip
설명 보기 ▼
clip
입력 내용을 Windows 클립보드에 복사.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/clip>.
{{dir}} | clip
명령줄 출력 결과를 Windows 클립보드로 파이프:
clip < {{path\to\file.ext}}
파일의 내용을 Windows 클립보드에 복사:
echo {{some text}} | clip
끝에 줄 바꿈이 있는 텍스트를 Windows 클립보드에 복사:
