startpod 0.0.1
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/LICENSE +7 -0
- package/README.md +32 -0
- package/index.d.ts +17 -0
- package/index.js +23 -0
- package/package.json +42 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2026 Start.dev
|
|
2
|
+
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
This package is published to reserve the `startpod` name. No license to use,
|
|
6
|
+
copy, modify, or distribute this software is granted. Licensing terms for the
|
|
7
|
+
Startpod runtime will accompany its first functional release.
|
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Startpod
|
|
2
|
+
|
|
3
|
+
**Sandboxed dev environments that run entirely in your browser.**
|
|
4
|
+
|
|
5
|
+
Startpod boots real, unmodified Node tooling client-side. Vite, Next.js, Tailwind,
|
|
6
|
+
npm installs, file watchers, HMR. No server to provision, no container to wait for,
|
|
7
|
+
no per-session compute bill, because the compute is the browser that is already open.
|
|
8
|
+
|
|
9
|
+
Learn more at **[startpod.dev](https://startpod.dev)**.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## This release is a placeholder
|
|
14
|
+
|
|
15
|
+
`startpod@0.0.1` reserves the package name. It contains no runtime:
|
|
16
|
+
|
|
17
|
+
```js
|
|
18
|
+
import { released, boot } from "startpod";
|
|
19
|
+
|
|
20
|
+
released; // false
|
|
21
|
+
boot(); // throws: placeholder release with no runtime
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Installing it today gets you nothing useful. It exists so the name is held while
|
|
25
|
+
the runtime is finished, and so that a stray install fails with a clear message
|
|
26
|
+
instead of a confusing error deeper in your stack.
|
|
27
|
+
|
|
28
|
+
Watch [startpod.dev](https://startpod.dev) for the first functional release.
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
All rights reserved. See [LICENSE](./LICENSE).
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*! startpod 0.0.1 | Copyright (c) 2026 Start.dev | All rights reserved. */
|
|
2
|
+
|
|
3
|
+
/** Version of this placeholder release. */
|
|
4
|
+
export declare const version: string;
|
|
5
|
+
|
|
6
|
+
/** Whether this build ships an actual runtime. `false` for every placeholder release. */
|
|
7
|
+
export declare const released: false;
|
|
8
|
+
|
|
9
|
+
/** Throws. The runtime is not published yet; see https://startpod.dev */
|
|
10
|
+
export declare function boot(): never;
|
|
11
|
+
|
|
12
|
+
declare const _default: {
|
|
13
|
+
version: typeof version;
|
|
14
|
+
released: typeof released;
|
|
15
|
+
boot: typeof boot;
|
|
16
|
+
};
|
|
17
|
+
export default _default;
|
package/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*! startpod 0.0.1 | Copyright (c) 2026 Start.dev | All rights reserved. */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Placeholder release. This package reserves the `startpod` name while the
|
|
5
|
+
* runtime is developed; it ships no runtime and does nothing useful yet.
|
|
6
|
+
*
|
|
7
|
+
* It exports an honest stub rather than an empty module so that anyone who
|
|
8
|
+
* installs it by mistake gets a clear message instead of a confusing
|
|
9
|
+
* `undefined is not a function` further down their stack.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
export const version = "0.0.1";
|
|
13
|
+
|
|
14
|
+
/** Whether this build ships an actual runtime. It does not, yet. */
|
|
15
|
+
export const released = false;
|
|
16
|
+
|
|
17
|
+
export function boot() {
|
|
18
|
+
throw new Error(
|
|
19
|
+
"startpod: this is a placeholder release with no runtime. See https://startpod.dev"
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export default { version, released, boot };
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "startpod",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Startpod runs real Node dev servers entirely in the browser. Placeholder release reserving the package name.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"author": "Start.dev",
|
|
7
|
+
"homepage": "https://startpod.dev",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/startdotdev/startpod.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://startpod.dev"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"startpod",
|
|
17
|
+
"browser",
|
|
18
|
+
"sandbox",
|
|
19
|
+
"runtime",
|
|
20
|
+
"nodejs",
|
|
21
|
+
"webassembly",
|
|
22
|
+
"dev-server"
|
|
23
|
+
],
|
|
24
|
+
"type": "module",
|
|
25
|
+
"main": "./index.js",
|
|
26
|
+
"types": "./index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./index.d.ts",
|
|
30
|
+
"import": "./index.js",
|
|
31
|
+
"default": "./index.js"
|
|
32
|
+
},
|
|
33
|
+
"./package.json": "./package.json"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"index.js",
|
|
37
|
+
"index.d.ts",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE"
|
|
40
|
+
],
|
|
41
|
+
"sideEffects": false
|
|
42
|
+
}
|