wattpm 2.8.1 → 2.9.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/README.md +46 -0
- package/package.json +7 -7
- package/schema.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Watt, the Application Server for Node.js
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/wattpm)
|
|
6
|
+
[](https://github.com/platformatic/platformatic/actions/workflows/ci.yml)
|
|
7
|
+
[](https://www.npmjs.com/package/platformatic)
|
|
8
|
+
[](https://discord.gg/platformatic)
|
|
9
|
+
|
|
10
|
+
[Watt](https://platformatic.dev/watt), Platformatic's Node.js application server, allows you to run multiple Node.js applications (services) that are centrally managed.
|
|
11
|
+
|
|
12
|
+
By using Watt, you gain access to a virtual mesh network, fast logging via [Pino](https://getpino.io),
|
|
13
|
+
monitoring through [Prometheus](https://prometheus.io/), and [OpenTelemetry](https://opentelemetry.io/) integrations.
|
|
14
|
+
|
|
15
|
+
Watt supports the stacks you love most, including [Next.js](https://nextjs.org), [Astro](https://astro.build/),
|
|
16
|
+
[Express](https://expressjs.com/), and [Fastify](https://fastify.dev).
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Create a new application
|
|
22
|
+
npx wattpm@latest init
|
|
23
|
+
|
|
24
|
+
# Or install manually:
|
|
25
|
+
npm install wattpm
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Follow our [Quick Start Guide](https://platformatic.dev/docs/getting-started/quick-start-watt)
|
|
29
|
+
guide to get up and running with Platformatic.
|
|
30
|
+
|
|
31
|
+
## Documentation
|
|
32
|
+
|
|
33
|
+
- [Getting Started](https://docs.platformatic.dev/docs/getting-started/quick-start-watt)
|
|
34
|
+
- [Reference](https://platformatic.dev/docs/watt/overview)
|
|
35
|
+
- [Guides](https://platformatic.dev/docs/learn/overview)
|
|
36
|
+
|
|
37
|
+
Check out our full documentation at [platformatic.dev](https://platformatic.dev).
|
|
38
|
+
|
|
39
|
+
## Support
|
|
40
|
+
|
|
41
|
+
If you run into a bug, issues or have a suggestion for improvement, please raise an
|
|
42
|
+
[issue on GitHub](https://github.com/platformatic/platformatic/issues/new) or join our [Discord feedback](https://discord.gg/platformatic) channel.
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
[Apache 2.0](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"pino-pretty": "^11.2.2",
|
|
35
35
|
"split2": "^4.2.0",
|
|
36
36
|
"table": "^6.8.2",
|
|
37
|
-
"@platformatic/basic": "2.
|
|
38
|
-
"@platformatic/config": "2.
|
|
39
|
-
"@platformatic/control": "2.
|
|
40
|
-
"@platformatic/runtime": "2.
|
|
41
|
-
"@platformatic/utils": "2.
|
|
37
|
+
"@platformatic/basic": "2.9.0",
|
|
38
|
+
"@platformatic/config": "2.9.0",
|
|
39
|
+
"@platformatic/control": "2.9.0",
|
|
40
|
+
"@platformatic/runtime": "2.9.0",
|
|
41
|
+
"@platformatic/utils": "2.9.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"borp": "^0.18.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"neostandard": "^0.11.1",
|
|
49
49
|
"typescript": "^5.5.4",
|
|
50
50
|
"undici": "^6.19.8",
|
|
51
|
-
"@platformatic/node": "2.
|
|
51
|
+
"@platformatic/node": "2.9.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"test": "npm run lint && borp --concurrency=1 --timeout=300000",
|
package/schema.json
CHANGED