@vercube/core 0.0.1-beta.2 → 0.0.1-beta.3
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 +56 -0
- package/package.json +5 -4
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<a href="https://vercube.dev/"><img src="./.github/assets/logo.png" alt="Vite logo" width="200"></a>
|
|
3
|
+
<br>
|
|
4
|
+
<br>
|
|
5
|
+
|
|
6
|
+
# Vercube
|
|
7
|
+
|
|
8
|
+
Next generation HTTP framework
|
|
9
|
+
|
|
10
|
+
<a href="https://www.npmjs.com/package/@vercube/core">
|
|
11
|
+
<img src="https://img.shields.io/npm/v/%40vercube%2Fcore?style=for-the-badge&logo=npm&color=%23767eff" alt="npm"/>
|
|
12
|
+
</a>
|
|
13
|
+
<a href="https://www.npmjs.com/package/@vercube/core">
|
|
14
|
+
<img src="https://img.shields.io/npm/dm/%40vercube%2Fcore?style=for-the-badge&logo=npm&color=%23767eff" alt="npm"/>
|
|
15
|
+
</a>
|
|
16
|
+
<a href="https://github.com/vercube/vercube/blob/main/LICENSE" target="_blank">
|
|
17
|
+
<img src="https://img.shields.io/npm/l/%40vercube%2Fcore?style=for-the-badge&color=%23767eff" alt="License"/>
|
|
18
|
+
</a>
|
|
19
|
+
<br/>
|
|
20
|
+
<br/>
|
|
21
|
+
</div>
|
|
22
|
+
|
|
23
|
+
An ultra-efficient JavaScript server framework that runs anywhere - Node.js, Bun, or Deno - with unmatched flexibility and complete configurability for developers who refuse to sacrifice speed or control.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## <a name="getting-started">🚀 Quick Start</a>
|
|
27
|
+
Vercube makes it incredibly easy to get started. With just one command, you'll have a fully configured project ready for development:
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
$ pnpm create vercube@latest
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
You can also try Vercube instantly using our online templates:
|
|
34
|
+
|
|
35
|
+
<a href="https://stackblitz.com/edit/vercube-starter" target="_blank">
|
|
36
|
+
<img src="https://img.shields.io/badge/Open%20in-StackBlitz-blue?style=for-the-badge&logo=stackblitz" alt="Open in StackBlitz">
|
|
37
|
+
</a>
|
|
38
|
+
<a href="https://codesandbox.io/p/devbox/vercube-starter-97s34j" target="_blank">
|
|
39
|
+
<img src="https://img.shields.io/badge/Open%20in-CodeSandbox-blue?style=for-the-badge&logo=codesandbox" alt="Open in CodeSandbox">
|
|
40
|
+
</a>
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## <a name="documentation">📖 Documentation</a>
|
|
45
|
+
Comprehensive documentation is available at [vercube.dev](https://vercube.dev). There you'll find detailed module descriptions, project information, guides, and everything else you need to know about Vercube.
|
|
46
|
+
|
|
47
|
+
## <a name="contribute">❤️ Contribute</a>
|
|
48
|
+
We welcome and appreciate all contributions to Vercube! There are several ways you can help make this project better:
|
|
49
|
+
|
|
50
|
+
- **Report bugs**: If you find a bug, please [open an issue](https://github.com/vercube/vercube/issues) with detailed steps to reproduce it
|
|
51
|
+
- **Submit pull requests**: Have a fix or new feature? PRs are always welcome! Check out our [contribution guidelines](CONTRIBUTING.md)
|
|
52
|
+
- **Join our community**: Have questions or want to discuss ideas? Join our [Discord server](https://discord.gg/safphS45aN)
|
|
53
|
+
- **Improve documentation**: Found something unclear or missing in the docs? Help us make them better!
|
|
54
|
+
- **Share feedback**: Your input helps shape Vercube's future. Let us know what features you'd like to see
|
|
55
|
+
|
|
56
|
+
Every contribution, no matter how small, makes a difference. We strive to review all contributions promptly and maintain a welcoming environment for all contributors.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercube/core",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.3",
|
|
4
4
|
"description": "Core module for Vercube framework",
|
|
5
5
|
"repository": "@vercube/core",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"module": "./dist/index.mjs",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
19
|
"files": [
|
|
20
|
-
"dist"
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
21
22
|
],
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"@standard-schema/spec": "1.0.0",
|
|
@@ -26,8 +27,8 @@
|
|
|
26
27
|
"pathe": "2.0.3",
|
|
27
28
|
"rou3": "0.5.1",
|
|
28
29
|
"srvx": "0.2.8",
|
|
29
|
-
"@vercube/di": "0.0.1-beta.
|
|
30
|
-
"@vercube/logger": "0.0.1-beta.
|
|
30
|
+
"@vercube/di": "0.0.1-beta.3",
|
|
31
|
+
"@vercube/logger": "0.0.1-beta.3"
|
|
31
32
|
},
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@vitest/coverage-v8": "^1.3.1",
|