@heyputer/shell 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +9 -0
- package/.env.example +3 -0
- package/.github/workflows/npm-build.yml +34 -0
- package/.github/workflows/npm-publish.yml +50 -0
- package/.idx/dev.nix +53 -0
- package/CHANGELOG.md +292 -0
- package/LICENSE.md +21 -0
- package/README.md +18 -0
- package/bin/index.js +258 -0
- package/package.json +58 -0
- package/screenshot.png +0 -0
- package/src/commands/apps.js +356 -0
- package/src/commands/auth.js +195 -0
- package/src/commands/deploy.js +54 -0
- package/src/commands/files.js +1187 -0
- package/src/commands/init.js +322 -0
- package/src/commands/shell.js +61 -0
- package/src/commands/sites.js +169 -0
- package/src/commands/subdomains.js +95 -0
- package/src/commons.js +409 -0
- package/src/crypto.js +9 -0
- package/src/executor.js +386 -0
- package/src/modules/ErrorModule.js +20 -0
- package/src/modules/ProfileModule.js +334 -0
- package/src/modules/PuterModule.js +30 -0
- package/src/utils.js +135 -0
- package/tests/ErrorModule.test.js +42 -0
- package/tests/ProfileModule.test.js +274 -0
- package/tests/PuterModule.test.js +56 -0
- package/tests/apps.test.js +194 -0
- package/tests/commons.test.js +380 -0
- package/tests/deploy.test.js +84 -0
- package/tests/executor.test.js +52 -0
- package/tests/files.test.js +640 -0
- package/tests/login.test.js +206 -0
- package/tests/shell.test.js +184 -0
- package/tests/sites.test.js +67 -0
- package/tests/subdomains.test.js +90 -0
- package/tests/utils.test.js +193 -0
package/.env.example
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This workflow will run tests using node on every push and pull request
|
|
2
|
+
name: Build package
|
|
3
|
+
|
|
4
|
+
on: [push, pull_request]
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
node-version: ['20.x', '22.x', '24.x']
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
- name: Install pnpm
|
|
16
|
+
uses: pnpm/action-setup@v4
|
|
17
|
+
with:
|
|
18
|
+
version: 8
|
|
19
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
20
|
+
uses: actions/setup-node@v4
|
|
21
|
+
with:
|
|
22
|
+
node-version: ${{ matrix.node-version }}
|
|
23
|
+
cache: 'pnpm'
|
|
24
|
+
- name: Install dependencies
|
|
25
|
+
run: pnpm install --frozen-lockfile
|
|
26
|
+
- name: Run tests & coverage
|
|
27
|
+
run: pnpm run coverage
|
|
28
|
+
- name: Upload coverage reports to Codecov
|
|
29
|
+
if: github.event_name != 'pull_request'
|
|
30
|
+
uses: codecov/codecov-action@v5
|
|
31
|
+
with:
|
|
32
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
33
|
+
slug: HeyPuter/puter-cli
|
|
34
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
|
3
|
+
|
|
4
|
+
name: Publish package
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
push:
|
|
8
|
+
tags:
|
|
9
|
+
- 'v*.*.*'
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
- name: Install pnpm
|
|
17
|
+
uses: pnpm/action-setup@v4
|
|
18
|
+
with:
|
|
19
|
+
version: 8
|
|
20
|
+
- name: Use Node.js 20
|
|
21
|
+
uses: actions/setup-node@v4
|
|
22
|
+
with:
|
|
23
|
+
node-version: 20
|
|
24
|
+
cache: 'pnpm'
|
|
25
|
+
- name: Install dependencies
|
|
26
|
+
run: pnpm install --frozen-lockfile
|
|
27
|
+
- name: Run tests
|
|
28
|
+
run: pnpm test
|
|
29
|
+
|
|
30
|
+
publish-npm:
|
|
31
|
+
needs: build
|
|
32
|
+
runs-on: ubuntu-latest
|
|
33
|
+
steps:
|
|
34
|
+
- uses: actions/checkout@v4
|
|
35
|
+
- name: Install pnpm
|
|
36
|
+
uses: pnpm/action-setup@v4
|
|
37
|
+
with:
|
|
38
|
+
version: 8
|
|
39
|
+
- name: Use Node.js 20
|
|
40
|
+
uses: actions/setup-node@v4
|
|
41
|
+
with:
|
|
42
|
+
node-version: 20
|
|
43
|
+
registry-url: https://registry.npmjs.org/
|
|
44
|
+
cache: 'pnpm'
|
|
45
|
+
- name: Install dependencies
|
|
46
|
+
run: pnpm install --frozen-lockfile
|
|
47
|
+
- name: Publish to npm
|
|
48
|
+
run: pnpm publish --no-git-checks
|
|
49
|
+
env:
|
|
50
|
+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
package/.idx/dev.nix
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# To learn more about how to use Nix to configure your environment
|
|
2
|
+
# see: https://developers.google.com/idx/guides/customize-idx-env
|
|
3
|
+
{ pkgs, ... }: {
|
|
4
|
+
# Which nixpkgs channel to use.
|
|
5
|
+
channel = "stable-24.05"; # or "unstable"
|
|
6
|
+
# Use https://search.nixos.org/packages to find packages
|
|
7
|
+
packages = [
|
|
8
|
+
# pkgs.go
|
|
9
|
+
# pkgs.python311
|
|
10
|
+
# pkgs.python311Packages.pip
|
|
11
|
+
pkgs.nodejs_20
|
|
12
|
+
pkgs.nodePackages.nodemon
|
|
13
|
+
];
|
|
14
|
+
# Sets environment variables in the workspace
|
|
15
|
+
env = {};
|
|
16
|
+
idx = {
|
|
17
|
+
# Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
|
|
18
|
+
extensions = [
|
|
19
|
+
# "vscodevim.vim"
|
|
20
|
+
];
|
|
21
|
+
# Enable previews
|
|
22
|
+
previews = {
|
|
23
|
+
enable = true;
|
|
24
|
+
previews = {
|
|
25
|
+
# web = {
|
|
26
|
+
# # Example: run "npm run dev" with PORT set to IDX's defined port for previews,
|
|
27
|
+
# # and show it in IDX's web preview panel
|
|
28
|
+
# command = ["npm" "run" "dev"];
|
|
29
|
+
# manager = "web";
|
|
30
|
+
# env = {
|
|
31
|
+
# # Environment variables to set for your server
|
|
32
|
+
# PORT = "$PORT";
|
|
33
|
+
# };
|
|
34
|
+
# };
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
# Workspace lifecycle hooks
|
|
38
|
+
workspace = {
|
|
39
|
+
# Runs when a workspace is first created
|
|
40
|
+
onCreate = {
|
|
41
|
+
# Example: install JS dependencies from NPM
|
|
42
|
+
# npm-install = "npm install";
|
|
43
|
+
# Open editors for the following files by default, if they exist:
|
|
44
|
+
default.openFiles = [ ".idx/dev.nix" "README.md" ];
|
|
45
|
+
};
|
|
46
|
+
# Runs when the workspace is (re)started
|
|
47
|
+
onStart = {
|
|
48
|
+
# Example: start a background task to watch and re-build backend code
|
|
49
|
+
# watch-backend = "npm run watch-backend";
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
### Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
4
|
+
|
|
5
|
+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
|
+
|
|
7
|
+
#### [v2.0.0](https://github.com/HeyPuter/puter-cli/compare/v1.8.6...v2.0.0)
|
|
8
|
+
|
|
9
|
+
- Add browser based login [`#75`](https://github.com/HeyPuter/puter-cli/pull/75)
|
|
10
|
+
- Adjust actions for PR test [`#73`](https://github.com/HeyPuter/puter-cli/pull/73)
|
|
11
|
+
- Add test for file commands [`#69`](https://github.com/HeyPuter/puter-cli/pull/69)
|
|
12
|
+
- Add deploy test [`#68`](https://github.com/HeyPuter/puter-cli/pull/68)
|
|
13
|
+
- Add executor test [`#67`](https://github.com/HeyPuter/puter-cli/pull/67)
|
|
14
|
+
- Add ProfileModule test [`#66`](https://github.com/HeyPuter/puter-cli/pull/66)
|
|
15
|
+
- Add commons.test.js [`#64`](https://github.com/HeyPuter/puter-cli/pull/64)
|
|
16
|
+
- Add test shell [`#65`](https://github.com/HeyPuter/puter-cli/pull/65)
|
|
17
|
+
- Add PuterModule test [`#63`](https://github.com/HeyPuter/puter-cli/pull/63)
|
|
18
|
+
- Add test error module [`#62`](https://github.com/HeyPuter/puter-cli/pull/62)
|
|
19
|
+
- Add subdomains test [`#61`](https://github.com/HeyPuter/puter-cli/pull/61)
|
|
20
|
+
- Add sites test [`#60`](https://github.com/HeyPuter/puter-cli/pull/60)
|
|
21
|
+
- Fix first init puter module [`#59`](https://github.com/HeyPuter/puter-cli/pull/59)
|
|
22
|
+
- Fix puter module causing unref error [`#52`](https://github.com/HeyPuter/puter-cli/pull/52)
|
|
23
|
+
- Migrate drivers call to Puter.js NPM [`#33`](https://github.com/HeyPuter/puter-cli/pull/33)
|
|
24
|
+
- Add non interactive puter site deploy [`#30`](https://github.com/HeyPuter/puter-cli/pull/30)
|
|
25
|
+
- Set program name to be hardcoded puter string [`#32`](https://github.com/HeyPuter/puter-cli/pull/32)
|
|
26
|
+
- Enable site:deploy redeploy under same subdomain [`#26`](https://github.com/HeyPuter/puter-cli/pull/26)
|
|
27
|
+
- Fix CLI close unexpectedly when first login [`#29`](https://github.com/HeyPuter/puter-cli/pull/29)
|
|
28
|
+
- Fix logout [`#28`](https://github.com/HeyPuter/puter-cli/pull/28)
|
|
29
|
+
- Site deploy from local dir [`#25`](https://github.com/HeyPuter/puter-cli/pull/25)
|
|
30
|
+
- Fix CI [`0b189de`](https://github.com/HeyPuter/puter-cli/commit/0b189dede790280bdf6e2a4691843970eb7ea83f)
|
|
31
|
+
- Init puter js npm [`b1bd5e7`](https://github.com/HeyPuter/puter-cli/commit/b1bd5e78a232391a2102e85e3ee0c0665ed1a00b)
|
|
32
|
+
- Update pnpm-lock.yaml [`9f7f8fc`](https://github.com/HeyPuter/puter-cli/commit/9f7f8fc7921427a580fe0bb8ca0dd10fe5db8b6b)
|
|
33
|
+
|
|
34
|
+
#### [v1.8.6](https://github.com/HeyPuter/puter-cli/compare/v1.8.5...v1.8.6)
|
|
35
|
+
|
|
36
|
+
> 8 October 2025
|
|
37
|
+
|
|
38
|
+
- Use random name if not specified for `site:deploy` [`#24`](https://github.com/HeyPuter/puter-cli/pull/24)
|
|
39
|
+
- Use random name if not specified [`48ae3f0`](https://github.com/HeyPuter/puter-cli/commit/48ae3f04325f27b654e00050c7ec514bee72535e)
|
|
40
|
+
- docs(readme): update site command [`aa4ba6e`](https://github.com/HeyPuter/puter-cli/commit/aa4ba6e1ee52e1c6e2c0cb5fb74c120fb1b5c0c3)
|
|
41
|
+
- refactor(site): remove name argument from site:deploy [`1ffaacb`](https://github.com/HeyPuter/puter-cli/commit/1ffaacbd3e00dff4f75af66bd1d4b9aee1daf9c6)
|
|
42
|
+
|
|
43
|
+
#### [v1.8.5](https://github.com/HeyPuter/puter-cli/compare/v1.8.4...v1.8.5)
|
|
44
|
+
|
|
45
|
+
> 5 October 2025
|
|
46
|
+
|
|
47
|
+
- feat(site): add site:deploy command for one-step project deployment [`94210ed`](https://github.com/HeyPuter/puter-cli/commit/94210ed796e7564647f4cd177a1b0bef72e66ef2)
|
|
48
|
+
- Fix and add some details to the README file [`8acb6ea`](https://github.com/HeyPuter/puter-cli/commit/8acb6ea753b4f83c146f26473f61756e613a4953)
|
|
49
|
+
- fix(files): touch command to creation a new file [`d30a067`](https://github.com/HeyPuter/puter-cli/commit/d30a0673e9aa5fb5b5d6b037a6a134a196a27529)
|
|
50
|
+
|
|
51
|
+
#### [v1.8.4](https://github.com/HeyPuter/puter-cli/compare/v1.8.3...v1.8.4)
|
|
52
|
+
|
|
53
|
+
> 20 September 2025
|
|
54
|
+
|
|
55
|
+
- fix(app): improve `app:delete` argument validation and usage [`eda41cd`](https://github.com/HeyPuter/puter-cli/commit/eda41cd7c623b8a3f0c60f586de756d4369face3)
|
|
56
|
+
|
|
57
|
+
#### [v1.8.3](https://github.com/HeyPuter/puter-cli/compare/v1.8.2...v1.8.3)
|
|
58
|
+
|
|
59
|
+
> 20 September 2025
|
|
60
|
+
|
|
61
|
+
- fix(app): improve `app:create` validation and usage [`73fc030`](https://github.com/HeyPuter/puter-cli/commit/73fc0300e244a7e94f16d266bfad6128528144b6)
|
|
62
|
+
- chore(config): add ignore patterns for AI tools and agent files [`2b19d6c`](https://github.com/HeyPuter/puter-cli/commit/2b19d6c4c8233d560d4ca16820b3f601875b6c79)
|
|
63
|
+
|
|
64
|
+
#### [v1.8.2](https://github.com/HeyPuter/puter-cli/compare/v1.8.1...v1.8.2)
|
|
65
|
+
|
|
66
|
+
> 18 September 2025
|
|
67
|
+
|
|
68
|
+
- feat: support multiple user profiles and hosts [`#12`](https://github.com/HeyPuter/puter-cli/pull/12)
|
|
69
|
+
- feat: merge profile feature and fix tests [`f234bc2`](https://github.com/HeyPuter/puter-cli/commit/f234bc2704047f39d2899962cd2aaa63df8331ce)
|
|
70
|
+
- ci: revert to pnpm for publishing [`dcd2fbc`](https://github.com/HeyPuter/puter-cli/commit/dcd2fbcbb8f9b5c5cb115a6c90a7e1e5225a2854)
|
|
71
|
+
- fix(ci): improve pnpm lockfile handling in publish workflow [`4731270`](https://github.com/HeyPuter/puter-cli/commit/4731270c3fcd4e4b855c3e1e2f77dbf79ed4ee4b)
|
|
72
|
+
|
|
73
|
+
#### [v1.8.1](https://github.com/HeyPuter/puter-cli/compare/v1.8.0...v1.8.1)
|
|
74
|
+
|
|
75
|
+
> 16 April 2025
|
|
76
|
+
|
|
77
|
+
- fix: better version status handling and error resilience [`ab467e8`](https://github.com/HeyPuter/puter-cli/commit/ab467e8e57cb4f82619424b12136724904df0302)
|
|
78
|
+
|
|
79
|
+
#### [v1.8.0](https://github.com/HeyPuter/puter-cli/compare/v1.7.3...v1.8.0)
|
|
80
|
+
|
|
81
|
+
> 2 April 2025
|
|
82
|
+
|
|
83
|
+
- feat(files): add edit command to modify remote files with local editor [`220b07c`](https://github.com/HeyPuter/puter-cli/commit/220b07c79fa9e9ab2e0e668cfbd7e5260c9746a2)
|
|
84
|
+
|
|
85
|
+
#### [v1.7.3](https://github.com/HeyPuter/puter-cli/compare/v1.7.2...v1.7.3)
|
|
86
|
+
|
|
87
|
+
> 16 March 2025
|
|
88
|
+
|
|
89
|
+
- fix: absolute remote path treated as relative in update #10 [`cb716a3`](https://github.com/HeyPuter/puter-cli/commit/cb716a37afdd9f552c53244a3eb63d7a649e244c)
|
|
90
|
+
|
|
91
|
+
#### [v1.7.2](https://github.com/HeyPuter/puter-cli/compare/v1.7.1...v1.7.2)
|
|
92
|
+
|
|
93
|
+
> 4 March 2025
|
|
94
|
+
|
|
95
|
+
- fix: mv command for both rename/move files [`0b944c8`](https://github.com/HeyPuter/puter-cli/commit/0b944c8295f615427bd90d19a6058b2053c1b3dc)
|
|
96
|
+
|
|
97
|
+
#### [v1.7.1](https://github.com/HeyPuter/puter-cli/compare/v1.7.0...v1.7.1)
|
|
98
|
+
|
|
99
|
+
> 4 March 2025
|
|
100
|
+
|
|
101
|
+
- fix: update command [`38ca9e8`](https://github.com/HeyPuter/puter-cli/commit/38ca9e824642cbf8b1ffdb0d2a6e5426f84c7371)
|
|
102
|
+
- docs: update README [`6e658f6`](https://github.com/HeyPuter/puter-cli/commit/6e658f6a117ee1ba206768905d53fb61c78e136d)
|
|
103
|
+
|
|
104
|
+
#### [v1.7.0](https://github.com/HeyPuter/puter-cli/compare/v1.6.1...v1.7.0)
|
|
105
|
+
|
|
106
|
+
> 16 February 2025
|
|
107
|
+
|
|
108
|
+
- feat: save auth token when login [`55b32b7`](https://github.com/HeyPuter/puter-cli/commit/55b32b7feca050902f4470f06af38f81d3299e6a)
|
|
109
|
+
- fix: create app from host shell [`30e5028`](https://github.com/HeyPuter/puter-cli/commit/30e5028d831d26349e3ae2fc8e34921693b5702c)
|
|
110
|
+
|
|
111
|
+
#### [v1.6.1](https://github.com/HeyPuter/puter-cli/compare/v1.6.0...v1.6.1)
|
|
112
|
+
|
|
113
|
+
> 16 February 2025
|
|
114
|
+
|
|
115
|
+
- fix: set subdomain when creating a site [`6329ed1`](https://github.com/HeyPuter/puter-cli/commit/6329ed1c766b8eb722ac8c03c9ffe61dbba4a66c)
|
|
116
|
+
|
|
117
|
+
#### [v1.6.0](https://github.com/HeyPuter/puter-cli/compare/v1.5.7...v1.6.0)
|
|
118
|
+
|
|
119
|
+
> 16 February 2025
|
|
120
|
+
|
|
121
|
+
- feat: improve init command [`2bd51ee`](https://github.com/HeyPuter/puter-cli/commit/2bd51ee01d0636b7979a9f55d3c746287c3b512a)
|
|
122
|
+
- chore: improve error message [`46fb3b0`](https://github.com/HeyPuter/puter-cli/commit/46fb3b063c1c74d0006138cd400b6ad207e784d9)
|
|
123
|
+
- chore: update package repo [`f6960ed`](https://github.com/HeyPuter/puter-cli/commit/f6960ed6f8e6fb793a6b8340476ab22778b44c14)
|
|
124
|
+
|
|
125
|
+
#### [v1.5.7](https://github.com/HeyPuter/puter-cli/compare/v1.5.6...v1.5.7)
|
|
126
|
+
|
|
127
|
+
> 16 February 2025
|
|
128
|
+
|
|
129
|
+
- chore: clean unused [`8477dc2`](https://github.com/HeyPuter/puter-cli/commit/8477dc294773c99270a83dc22ae602abe92621cf)
|
|
130
|
+
|
|
131
|
+
#### [v1.5.6](https://github.com/HeyPuter/puter-cli/compare/v1.5.5...v1.5.6)
|
|
132
|
+
|
|
133
|
+
> 15 February 2025
|
|
134
|
+
|
|
135
|
+
- fix: default api values [`146eda5`](https://github.com/HeyPuter/puter-cli/commit/146eda560da02f21a04523333b615c9ee2372322)
|
|
136
|
+
|
|
137
|
+
#### [v1.5.5](https://github.com/HeyPuter/puter-cli/compare/v1.5.4...v1.5.5)
|
|
138
|
+
|
|
139
|
+
> 13 February 2025
|
|
140
|
+
|
|
141
|
+
- fix: improve error handling [`d1fa91d`](https://github.com/HeyPuter/puter-cli/commit/d1fa91db09f08238c6be684ffe4688a0064f06cd)
|
|
142
|
+
|
|
143
|
+
#### [v1.5.4](https://github.com/HeyPuter/puter-cli/compare/v1.5.3...v1.5.4)
|
|
144
|
+
|
|
145
|
+
> 13 February 2025
|
|
146
|
+
|
|
147
|
+
- Remove "subdomain deletion" under Known Issues in README.md [`#8`](https://github.com/HeyPuter/puter-cli/pull/8)
|
|
148
|
+
- dev: add last-error command, context, and modules [`#7`](https://github.com/HeyPuter/puter-cli/pull/7)
|
|
149
|
+
- fix: delete a subdomain error message [`ed676dc`](https://github.com/HeyPuter/puter-cli/commit/ed676dc9d1364fabf242098e142a84c305dff177)
|
|
150
|
+
- ci: fix timezone issue [`8ee6a66`](https://github.com/HeyPuter/puter-cli/commit/8ee6a66db36f7ca00eb81a12c8bac094e057f534)
|
|
151
|
+
- ci: simplify timezone check [`ecf3bb9`](https://github.com/HeyPuter/puter-cli/commit/ecf3bb98bec5c093c23772280e3ee52aab8f3e8f)
|
|
152
|
+
|
|
153
|
+
#### [v1.5.3](https://github.com/HeyPuter/puter-cli/compare/v1.5.2...v1.5.3)
|
|
154
|
+
|
|
155
|
+
> 7 February 2025
|
|
156
|
+
|
|
157
|
+
- refactor: early return in fallback behavior [`#6`](https://github.com/HeyPuter/puter-cli/pull/6)
|
|
158
|
+
- fix: ignore undefined appDir when listing sites [`#5`](https://github.com/HeyPuter/puter-cli/pull/5)
|
|
159
|
+
- fix: use array args when calling DeleteSubdomain [`#4`](https://github.com/HeyPuter/puter-cli/pull/4)
|
|
160
|
+
- Update README.md [`#3`](https://github.com/HeyPuter/puter-cli/pull/3)
|
|
161
|
+
- fix: improve app uuid check [`49dcc7f`](https://github.com/HeyPuter/puter-cli/commit/49dcc7f1220a58987601e8054b0d4a450cd02afe)
|
|
162
|
+
- fix: potential timezone issues [`ba0e4b1`](https://github.com/HeyPuter/puter-cli/commit/ba0e4b183efb82a0c252e5c6250d976f1efe19cd)
|
|
163
|
+
|
|
164
|
+
#### [v1.5.2](https://github.com/HeyPuter/puter-cli/compare/v1.5.1...v1.5.2)
|
|
165
|
+
|
|
166
|
+
> 6 February 2025
|
|
167
|
+
|
|
168
|
+
- chore: clean unused [`e5c7fcc`](https://github.com/HeyPuter/puter-cli/commit/e5c7fcca3096b4b2c0659d84d8de63dce039a765)
|
|
169
|
+
- chore: more details [`0a25a2f`](https://github.com/HeyPuter/puter-cli/commit/0a25a2fb7efa9a67033b4e483305da44a68f2c9a)
|
|
170
|
+
- docs: badge version [`503bc66`](https://github.com/HeyPuter/puter-cli/commit/503bc6667666b14f85245887a3bf2071711dc4e1)
|
|
171
|
+
|
|
172
|
+
#### [v1.5.1](https://github.com/HeyPuter/puter-cli/compare/v1.5.0...v1.5.1)
|
|
173
|
+
|
|
174
|
+
> 5 February 2025
|
|
175
|
+
|
|
176
|
+
- imporve listing uid [`e2573f8`](https://github.com/HeyPuter/puter-cli/commit/e2573f83df6b47d8ab32ffc66ab19a9c984dd250)
|
|
177
|
+
|
|
178
|
+
#### [v1.5.0](https://github.com/HeyPuter/puter-cli/compare/v1.4.4...v1.5.0)
|
|
179
|
+
|
|
180
|
+
> 5 February 2025
|
|
181
|
+
|
|
182
|
+
- fix: improve version check [`f3ea79e`](https://github.com/HeyPuter/puter-cli/commit/f3ea79e3156632f892558489dfd34b1119948a48)
|
|
183
|
+
- update README [`79b381c`](https://github.com/HeyPuter/puter-cli/commit/79b381c57935cae5ffb9edf5ad11aca395ae8f8d)
|
|
184
|
+
|
|
185
|
+
#### [v1.4.4](https://github.com/HeyPuter/puter-cli/compare/v1.4.3...v1.4.4)
|
|
186
|
+
|
|
187
|
+
> 4 February 2025
|
|
188
|
+
|
|
189
|
+
- simplify failed login [`bbf8a42`](https://github.com/HeyPuter/puter-cli/commit/bbf8a429c1d2a64fbb03fb42f461bcc1a32c8379)
|
|
190
|
+
|
|
191
|
+
#### [v1.4.3](https://github.com/HeyPuter/puter-cli/compare/v1.4.2...v1.4.3)
|
|
192
|
+
|
|
193
|
+
> 2 February 2025
|
|
194
|
+
|
|
195
|
+
- fix: show disk usage [`dfd0ca3`](https://github.com/HeyPuter/puter-cli/commit/dfd0ca302f459b7295593c8d0147df15e488c963)
|
|
196
|
+
|
|
197
|
+
#### [v1.4.2](https://github.com/HeyPuter/puter-cli/compare/v1.4.1...v1.4.2)
|
|
198
|
+
|
|
199
|
+
> 30 January 2025
|
|
200
|
+
|
|
201
|
+
- license to MIT [`ed0c7ce`](https://github.com/HeyPuter/puter-cli/commit/ed0c7cefba242a5d8fe701cddf5adbe32121bca7)
|
|
202
|
+
- codecov: setup & badge [`7c4211b`](https://github.com/HeyPuter/puter-cli/commit/7c4211b6ea7b882485e3dfbaa17887a2d1fabccc)
|
|
203
|
+
- changelog: update license [`dcf8d23`](https://github.com/HeyPuter/puter-cli/commit/dcf8d232160cf74d13267baa07a8f36578df9443)
|
|
204
|
+
|
|
205
|
+
#### [v1.4.1](https://github.com/HeyPuter/puter-cli/compare/v1.4.0...v1.4.1)
|
|
206
|
+
|
|
207
|
+
> 27 January 2025
|
|
208
|
+
|
|
209
|
+
- feat: init command will scaffold new project [`c61d3f8`](https://github.com/HeyPuter/puter-cli/commit/c61d3f8669d66eb1a869db38b877d226d00b8aca)
|
|
210
|
+
- changelog: update [`c09aa17`](https://github.com/HeyPuter/puter-cli/commit/c09aa179bd0ad2f437bdf779916050c2496424cd)
|
|
211
|
+
|
|
212
|
+
#### [v1.4.0](https://github.com/HeyPuter/puter-cli/compare/v1.3.0...v1.4.0)
|
|
213
|
+
|
|
214
|
+
> 26 January 2025
|
|
215
|
+
|
|
216
|
+
- offline mode to get version [`d3c1dc2`](https://github.com/HeyPuter/puter-cli/commit/d3c1dc275bf8a1f38f083c8cdb066fb884a08138)
|
|
217
|
+
- changelog: update [`f0cc1e3`](https://github.com/HeyPuter/puter-cli/commit/f0cc1e36b2b246d65a88f32c626942c0e15ac245)
|
|
218
|
+
|
|
219
|
+
#### [v1.3.0](https://github.com/HeyPuter/puter-cli/compare/v1.2.1...v1.3.0)
|
|
220
|
+
|
|
221
|
+
> 22 January 2025
|
|
222
|
+
|
|
223
|
+
- ci: simplify workflow [`757b41c`](https://github.com/HeyPuter/puter-cli/commit/757b41caa62dc71946e7f1ffb34a32f2871248e0)
|
|
224
|
+
- test: setup coverage [`2dd6500`](https://github.com/HeyPuter/puter-cli/commit/2dd650088ad9ecb6f7f9cd60b3dab80d48ac2611)
|
|
225
|
+
- ci: update packages [`b346932`](https://github.com/HeyPuter/puter-cli/commit/b346932c4b6af2d8e43279ad3f35c45e451fd9f0)
|
|
226
|
+
|
|
227
|
+
#### [v1.2.1](https://github.com/HeyPuter/puter-cli/compare/v1.2.0...v1.2.1)
|
|
228
|
+
|
|
229
|
+
> 18 January 2025
|
|
230
|
+
|
|
231
|
+
- feat: update changelog [`028ca0c`](https://github.com/HeyPuter/puter-cli/commit/028ca0cf72e09bb63468d2b0a0ba7602d3b870ad)
|
|
232
|
+
- feat: auto-update changelog [`3004bed`](https://github.com/HeyPuter/puter-cli/commit/3004beda6afcf68cc916d544a45be85fa7e658e3)
|
|
233
|
+
|
|
234
|
+
#### [v1.2.0](https://github.com/HeyPuter/puter-cli/compare/v1.1.5...v1.2.0)
|
|
235
|
+
|
|
236
|
+
> 18 January 2025
|
|
237
|
+
|
|
238
|
+
- ci: attempt to fix npm install [`32fc508`](https://github.com/HeyPuter/puter-cli/commit/32fc508c4807119de485926674274b70e034288f)
|
|
239
|
+
- feat: basic history command [`18da28c`](https://github.com/HeyPuter/puter-cli/commit/18da28c83aa0760128d7b18e66e6b4d2b08b48d3)
|
|
240
|
+
- chore: improve structure [`70b67ad`](https://github.com/HeyPuter/puter-cli/commit/70b67adad5bd5e0bad4a9276160d17538d9b4bb6)
|
|
241
|
+
|
|
242
|
+
#### [v1.1.5](https://github.com/HeyPuter/puter-cli/compare/v1.1.4...v1.1.5)
|
|
243
|
+
|
|
244
|
+
> 16 January 2025
|
|
245
|
+
|
|
246
|
+
- fix: description arg handling & improve args parsing [`45c5a8c`](https://github.com/HeyPuter/puter-cli/commit/45c5a8c19034379e3cd7f30e724b8675d98bf28f)
|
|
247
|
+
|
|
248
|
+
#### [v1.1.4](https://github.com/HeyPuter/puter-cli/compare/v1.1.3...v1.1.4)
|
|
249
|
+
|
|
250
|
+
> 16 January 2025
|
|
251
|
+
|
|
252
|
+
- improve compatibility crypto api [`b015e6f`](https://github.com/HeyPuter/puter-cli/commit/b015e6f1318a2c4994675dd7390fab09d45bf3e9)
|
|
253
|
+
- fix: temporary disabled description [`c7456be`](https://github.com/HeyPuter/puter-cli/commit/c7456bed1c496f1a52156801aa4c0ea0191279c7)
|
|
254
|
+
|
|
255
|
+
#### [v1.1.3](https://github.com/HeyPuter/puter-cli/compare/v1.1.2...v1.1.3)
|
|
256
|
+
|
|
257
|
+
> 14 January 2025
|
|
258
|
+
|
|
259
|
+
- fix: unavailable subdomain when update app [`2497de4`](https://github.com/HeyPuter/puter-cli/commit/2497de41b5691df4d3a141952841c08cace4703c)
|
|
260
|
+
|
|
261
|
+
#### [v1.1.2](https://github.com/HeyPuter/puter-cli/compare/v1.1.1...v1.1.2)
|
|
262
|
+
|
|
263
|
+
> 14 January 2025
|
|
264
|
+
|
|
265
|
+
- grab latest version from npm [`9c32190`](https://github.com/HeyPuter/puter-cli/commit/9c321906415dfb5baa3d2bbba7b352f2766f8b84)
|
|
266
|
+
|
|
267
|
+
#### [v1.1.1](https://github.com/HeyPuter/puter-cli/compare/v1.1.0...v1.1.1)
|
|
268
|
+
|
|
269
|
+
> 14 January 2025
|
|
270
|
+
|
|
271
|
+
- Create npm-publish action [`48d9a70`](https://github.com/HeyPuter/puter-cli/commit/48d9a709417664900681e2219ea2af5e9bf33c01)
|
|
272
|
+
- update README: badges [`49241d7`](https://github.com/HeyPuter/puter-cli/commit/49241d7144c8c128955891a64acb448e79e1822c)
|
|
273
|
+
|
|
274
|
+
#### [v1.1.0](https://github.com/HeyPuter/puter-cli/compare/v1.0.3...v1.1.0)
|
|
275
|
+
|
|
276
|
+
> 14 January 2025
|
|
277
|
+
|
|
278
|
+
- feat: add support for 2FA logins [`#1`](https://github.com/HeyPuter/puter-cli/pull/1)
|
|
279
|
+
|
|
280
|
+
#### [v1.0.3](https://github.com/HeyPuter/puter-cli/compare/v1.0.1...v1.0.3)
|
|
281
|
+
|
|
282
|
+
> 13 January 2025
|
|
283
|
+
|
|
284
|
+
- update README [`479b8fc`](https://github.com/HeyPuter/puter-cli/commit/479b8fc9c784061146f453bc68759dbdb417ea1e)
|
|
285
|
+
|
|
286
|
+
#### v1.0.1
|
|
287
|
+
|
|
288
|
+
> 13 January 2025
|
|
289
|
+
|
|
290
|
+
- initial commit [`604d4a4`](https://github.com/HeyPuter/puter-cli/commit/604d4a47c8b593b7e24757c115df728f09233664)
|
|
291
|
+
- output nicely formatted table [`a0adb75`](https://github.com/HeyPuter/puter-cli/commit/a0adb75813bcecb21878c8ae7228b0ecbfdb397f)
|
|
292
|
+
- remove unused packages [`925b6cb`](https://github.com/HeyPuter/puter-cli/commit/925b6cbf827e619e65eb5afaa566a4d14e919cb8)
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Ibrahim H.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# puter-sh
|
|
2
|
+
|
|
3
|
+
SSH-style shell access to your Puter files. Connect to your Puter account and browse, read, and manage your files from the terminal.
|
|
4
|
+
|
|
5
|
+
> **Looking to deploy sites or manage apps?** You want [`@heyputer/cli`](https://www.npmjs.com/package/@heyputer/cli).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
npm install -g @heyputer/shell
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
puter-sh # start an interactive session
|
|
14
|
+
psh # short alias
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
*Previously published as `puter-cli`. If you have the old package installed: `npm uninstall -g puter-cli`.*
|