Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions packages/cli/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Arash

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
11 changes: 11 additions & 0 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @jet-queue/cli

A cli dashboard built to interact with JetQueue server

## Installation

```bash
npm i @jet-queue/cli
```

**To Learn how JetQueue works and how to use it in your projects check out [here](https://www.github.com/arxja/jet-queue)**
34 changes: 32 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,32 @@
{
"name": "@jet-queue/cli",
"version": "1.0.0",
"description": "An cli dashboard built for monitoring JetQueue's jobs/queues",
"version": "0.0.0",
"type": "module",
"author": {
"name": "Arash Jafari",
"url": "https://github.com/arxja"
},
"keywords": [
"cli",
"monitoring",
"async"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arxja/jet-queue.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/arxja/jet-queue/issues"
},
"homepage": "https://github.com/arxja/jet-queue#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"bin": {
"jet-queue": "./dist/index.js"
},
Expand All @@ -21,5 +46,10 @@
"@types/react": "^19.2.14",
"@types/ws": "^8.18.1",
"typescript": "^6.0.3"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false
}
21 changes: 21 additions & 0 deletions packages/client/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Arash

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
11 changes: 11 additions & 0 deletions packages/client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# jet-queue/client

JetQueue client is an SDK for interaction between JetQueue cli/web dashboards

## Installation

```bash
npm i jet-queue/client
```

**To Learn how JetQueue works and how to use it in your projects check out [here](https://www.github.com/arxja/jet-queue)**
46 changes: 38 additions & 8 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
{
"name": "@jet-queue/client",
"version": "1.0.0",
"description": "",
"version": "0.0.0",
"description": "JetQueue client for interaction between the server and cli/web dashboards",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"author": {
"name": "Arash Jafari",
"url": "https://github.com/arxja"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arxja/jet-queue.git",
"directory": "packages/client"
},
"bugs": {
"url": "https://github.com/arxja/jet-queue/issues"
},
"homepage": "https://github.com/arxja/jet-queue#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
Expand All @@ -13,15 +31,27 @@
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --dts --watch"
"dev": "tsup src/index.ts --format esm --dts --watch",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.6.2",
"tsup": "^8.0.0",
"typescript": "^5.9.3"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.3"
}
"keywords": [
"queue",
"SDK",
"job-queue",
"async",
"server"
],
"license": "MIT",
"packageManager": "pnpm@10.33.3",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false
}
3 changes: 2 additions & 1 deletion packages/client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
"rootDir": "./src",
"types": ["bun"]
},
"include": ["src/**/*.ts"]
}
5 changes: 3 additions & 2 deletions packages/core/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# @JetQueue/core
# @jet-queue/core

> JetQueue gives you this ability to move heavy tasks out of your API's req/res cycle to give the users a fast experience on the UI while jobs are executing in the background

## Installation
Expand All @@ -7,4 +8,4 @@
npm i @jet-queue/core
```

**For know how JetQueue works and how to use it check out [here](https://www.github.com/arxja/jet-queue)**
**To learn how JetQueue works and how to use it in your projects, check out [JetQueue docs](https://www.github.com/arxja/jet-queue)**
21 changes: 21 additions & 0 deletions packages/server/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Arash

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
10 changes: 10 additions & 0 deletions packages/server/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @jet-queue/server
Ready to run server for JetQueue

## Installation

```bash
npm i @jet-queue/server
```

**To Learn how JetQueue works and how to use it in your projects check out [here](https://www.github.com/arxja/jet-queue)**
42 changes: 35 additions & 7 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,40 @@
{
"name": "@jet-queue/server",
"version": "1.0.0",
"description": "",
"version": "0.0.0",
"description": "JetQueue's ready to use server",
"main": "dist/index.js",
"type": "module",
"author": {
"name": "Arash Jafari",
"url": "https://github.com/arxja"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arxja/jet-queue.git",
"directory": "packages/server"
},
"bugs": {
"url": "https://github.com/arxja/jet-queue/issues"
},
"homepage": "https://github.com/arxja/jet-queue#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"build": "tsup src/index.ts --format esm --dts"
"build": "tsup src/index.ts --format esm --dts",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"queue",
"server",
"job-queue",
"async"
],
"packageManager": "pnpm@10.33.3",
"dependencies": {
"@jet-queue/core": "workspace:*",
Expand All @@ -22,5 +45,10 @@
"@types/node": "^25.6.2",
"typescript": "^6.0.3",
"tsup": "^8.0.0"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false
}
11 changes: 7 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading