chiitiler
A tiny raster tile server for MapLibre styles.
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cdk
View Details ▼
cdk
AWS Cloud Development Kit.
cdk ls
List the stacks in the app:
cdk synth {{stack_name}}
Synthesize and print the CloudFormation template for the specified stack(s):
cdk deploy {{stack_name1 stack_name2 ...}}
Deploy one or more stacks:
docker run
View Details ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
git clone
View Details ▼
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
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm install
View Details ▼
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
View Details ▼
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
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
size
View Details ▼
size
Display the sizes of sections inside binary files.
size {{path/to/file}}
Display the size of sections in a given object or executable file:
size {{[-o|--radix=8]}} {{path/to/file}}
Display the size of sections in a given object or executable file in [o]ctal:
size {{[-d|--radix=10]}} {{path/to/file}}
Display the size of sections in a given object or executable file in [d]ecimal:
clip
View Details ▼
clip
Copy input content to the Windows clipboard.
{{dir}} | clip
Pipe command-line output to the Windows clipboard:
clip < {{path\to\file.ext}}
Copy the contents of a file to the Windows clipboard:
echo {{some text}} | clip
Copy text with a trailing newline to the Windows clipboard:
