asterism
Asterism is a CLI that provides a set of tools to build a Lyra instance from your favorite database.
File Explorer
- ci.yml
- renovate.json
- pre-commit
- cli-path.js
- version.js
- index.test.mjs
- cli.mjs
- LICENSE
- package.json
- README.md
- common.js
- index.js
- mysql.js
- postgres.js
- database.js
- seeder.js
- symbols.js
- validate-options.js
- common.test.js
- database.test.js
- errors.test.js
- index.test.js
- mysql.test.js
- postgres.test.js
- validate-options.test.js
- drill.js
- LICENSE
- package.json
- README.md
- index.test.js
- falcon.js
- LICENSE
- package.json
- README.md
- database.js
- logger.js
- normalizers.js
- time.js
- normalizers.test.js
- time.test.js
- huston.js
- LICENSE
- package.json
- README.md
- index.test.mjs
- LICENSE
- package.json
- README.md
- rover.mjs
- sync-version.sh
- .gitignore
- .npmignore
- .nvmrc
- docker-compose.yml
- LICENSE
- package.json
- pnpm-lock.yaml
- pnpm-workspace.yaml
- README.md
# 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.
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:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies 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`:
pnpm
View Details ▼
pnpm
Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.
pnpm init
Create a `package.json` file:
pnpm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
pnpm add {{module_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
