launchprep 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/README.md +20 -0
- package/bin/cli.js +11 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Launchprep
|
|
2
|
+
|
|
3
|
+
**Launch readiness checker.** Reads your code and tells you what will break.
|
|
4
|
+
|
|
5
|
+
288 checks — but it works out what you actually built before running any of
|
|
6
|
+
them, and tells you which ones it skipped and why. You are not building
|
|
7
|
+
Instagram; you will not hear about Instagram's problems.
|
|
8
|
+
|
|
9
|
+
- Runs entirely on your machine. Reads your files, changes none of them, uploads nothing.
|
|
10
|
+
- Covers Next.js, Express, Django, Rails, Laravel, Supabase, Stripe, and mobile.
|
|
11
|
+
- Every finding carries a file, a line, and the fix.
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
npx launchprep
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This package is a placeholder while the tool is finished.**
|
|
18
|
+
See [launchprep.dev](https://launchprep.dev).
|
|
19
|
+
|
|
20
|
+
MIT licensed.
|
package/bin/cli.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const c = { b: '\x1b[1m', d: '\x1b[2m', a: '\x1b[38;5;209m', o: '\x1b[0m' };
|
|
3
|
+
console.log(`
|
|
4
|
+
${c.b}LAUNCHPREP${c.o} ${c.d}launch readiness checker${c.o}
|
|
5
|
+
|
|
6
|
+
Not released yet. It will read your code and tell you what will
|
|
7
|
+
break before your users find out — ${c.a}288 checks${c.o}, and it works out
|
|
8
|
+
what you built first so it only runs the ones that apply.
|
|
9
|
+
|
|
10
|
+
${c.d}https://launchprep.dev${c.o}
|
|
11
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "launchprep",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Launch readiness checker. Reads your code and tells you what will break. Coming soon.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"launchprep": "bin/cli.js"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"security",
|
|
14
|
+
"audit",
|
|
15
|
+
"readiness",
|
|
16
|
+
"scanner",
|
|
17
|
+
"prelaunch",
|
|
18
|
+
"cli"
|
|
19
|
+
],
|
|
20
|
+
"homepage": "https://launchprep.dev",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"files": [
|
|
23
|
+
"bin",
|
|
24
|
+
"README.md"
|
|
25
|
+
]
|
|
26
|
+
}
|