@rainfw/core 0.1.0 → 0.1.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 +28 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<h1 align="center">Rain.js</h1>
|
|
3
|
+
<p align="center">A lightweight TypeScript web framework for Cloudflare Workers</p>
|
|
4
|
+
</p>
|
|
5
|
+
|
|
6
|
+
<p align="center">
|
|
7
|
+
<a href="https://www.npmjs.com/package/@rainfw/core"><img src="https://img.shields.io/npm/v/@rainfw/core?style=flat-square&color=0ea5e9" alt="npm version"></a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/@rainfw/core"><img src="https://img.shields.io/npm/dm/@rainfw/core?style=flat-square&color=38bdf8" alt="npm downloads"></a>
|
|
9
|
+
<a href="https://github.com/rainfw/rain.js/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@rainfw/core?style=flat-square&color=22d3ee" alt="license"></a>
|
|
10
|
+
<a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/TypeScript-strict-3178c6?style=flat-square&logo=typescript&logoColor=white" alt="TypeScript"></a>
|
|
11
|
+
<a href="https://workers.cloudflare.com/"><img src="https://img.shields.io/badge/Cloudflare_Workers-ready-f38020?style=flat-square&logo=cloudflareworkers&logoColor=white" alt="Cloudflare Workers"></a>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install @rainfw/core
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Contributing
|
|
23
|
+
|
|
24
|
+
Contributions are welcome! Please open an issue or submit a pull request.
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
[MIT](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rainfw/core",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "A TypeScript web framework for Cloudflare Workers",
|
|
5
5
|
"bin": {
|
|
6
6
|
"rainjs": "./cli/index.js"
|
|
7
7
|
},
|