frusta
S3-inspired object store. single-node, parallel chunk pipeline
File Explorer
- api.js
- checks.js
- options.js
- payload.js
- run.sh
- upload-flow.js
- readme.md
- migration.sql
- migration_lock.toml
- schema.prisma
- env.ts
- prisma.ts
- errorHandler.middleware.ts
- notFound.middleware.ts
- requestLogger.middleware.ts
- uploads.constants.ts
- uploads.controller.ts
- uploads.routes.ts
- uploads.schema.ts
- uploads.service.ts
- uploads.types.ts
- apiError.ts
- apiResponse.ts
- asyncHandler.ts
- app.ts
- server.ts
- upload.integration.test.ts
- upload.controller.unit.test.ts
- upload.schema.unit.test.ts
- upload.service.unit.test.ts
- tests-description.md
- .gitignore
- .gitkeep
- LICENSE
- package-lock.json
- package.json
- prisma.config.ts
- README.md
- tsconfig.json
- vitest.config.ts
# 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 test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
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:
