lyra-impact
Create a Lyra database from anywhere. Full REST API supported, GraphQL and CSVs.
File Explorer
- ci.yml
- dependabot.yml
- pre-commit
- graphql.ts
- index.ts
- rest.ts
- index.ts
- index.ts
- csv.ts
- json.ts
- filesystem.ts
- graphql.ts
- index.ts
- rest.ts
- index.ts
- c8.json
- tap.yml
- index.test.ts
- errors.test.ts
- utils.test.ts
- index.ts
- errors.ts
- http-status.ts
- utils.ts
- .eslintignore
- .eslintrc
- .gitignore
- .nvmrc
- .prettierrc
- LICENSE
- package.json
- README.md
- tsconfig.cjs.json
- tsconfig.esm.json
- 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.
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):
