phantomback 1.0.0 → 1.0.2
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 +7 -2
- package/package.json +9 -1
- package/src/cli/commands.js +1 -1
package/README.md
CHANGED
|
@@ -7,13 +7,18 @@
|
|
|
7
7
|
[](https://www.npmjs.com/package/phantomback)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](package.json)
|
|
10
|
+
[](https://phantombackxdocs.vercel.app)
|
|
10
11
|
|
|
11
12
|
**Stop waiting for the backend. Start building now.**
|
|
12
13
|
|
|
13
14
|
Drop in your API schema → get a fully functional REST server with realistic data,
|
|
14
15
|
JWT auth, pagination, filtering, sorting, search, and nested routes — in seconds.
|
|
15
16
|
|
|
16
|
-
[Getting Started](
|
|
17
|
+
[Getting Started](https://phantombackxdocs.vercel.app/getting-started) · [Config Guide](https://phantombackxdocs.vercel.app/configuration) · [API Reference](https://phantombackxdocs.vercel.app/api-reference) · [Examples](https://phantombackxdocs.vercel.app/examples)
|
|
18
|
+
|
|
19
|
+
[Documentation](https://phantombackxdocs.vercel.app) · [npm](https://www.npmjs.com/package/phantomback) · [GitHub](https://github.com/madhavxchaturvedi/npm-phantomback)
|
|
20
|
+
|
|
21
|
+
Made by [Madhav Chaturvedi](https://madhavxchaturvedi.vercel.app) · [LinkedIn](https://www.linkedin.com/in/madhavxchaturvedi/) · [Instagram](https://www.instagram.com/madhavxchaturvedi)
|
|
17
22
|
|
|
18
23
|
</div>
|
|
19
24
|
|
|
@@ -456,4 +461,4 @@ All responses follow a consistent format:
|
|
|
456
461
|
|
|
457
462
|
## 📄 License
|
|
458
463
|
|
|
459
|
-
MIT © [Madhav Chaturvedi](https://github.com/
|
|
464
|
+
MIT © [Madhav Chaturvedi](https://github.com/madhavxchaturvedi)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phantomback",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Instant fake backend generator with smart responses & chaos engineering. Drop in your API schema → get a fully functional, stateful REST server with realistic data, auth, pagination, filtering, and Reality Mode for chaos testing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -36,6 +36,14 @@
|
|
|
36
36
|
],
|
|
37
37
|
"author": "Madhav Chaturvedi",
|
|
38
38
|
"license": "MIT",
|
|
39
|
+
"homepage": "https://phantombackxdocs.vercel.app",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/madhavxchaturvedi/npm-phantomback.git"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/madhavxchaturvedi/npm-phantomback/issues"
|
|
46
|
+
},
|
|
39
47
|
"engines": {
|
|
40
48
|
"node": ">=18.0.0"
|
|
41
49
|
},
|
package/src/cli/commands.js
CHANGED