tinny-backend 1.0.2 → 1.0.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 +5 -5
- package/dist/utils/version.d.ts +1 -1
- package/dist/utils/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# tinny-backend
|
|
2
2
|
|
|
3
3
|
A lightweight routing system for Node.js with built-in file serving, JWT authentication, and monitoring capabilities.
|
|
4
4
|
|
|
@@ -17,13 +17,13 @@ A lightweight routing system for Node.js with built-in file serving, JWT authent
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install
|
|
20
|
+
npm install tinny-backend
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Quick Start
|
|
24
24
|
|
|
25
25
|
```typescript
|
|
26
|
-
import Server from '
|
|
26
|
+
import Server from 'tinny-backend';
|
|
27
27
|
|
|
28
28
|
const server = new Server({
|
|
29
29
|
port: 3000,
|
|
@@ -203,5 +203,5 @@ Yassine Ajagrou
|
|
|
203
203
|
|
|
204
204
|
## Links
|
|
205
205
|
|
|
206
|
-
- [GitHub Repository](https://github.com/iaceene/
|
|
207
|
-
- [npm Package](https://www.npmjs.com/package/
|
|
206
|
+
- [GitHub Repository](https://github.com/iaceene/tinny-backend)
|
|
207
|
+
- [npm Package](https://www.npmjs.com/package/tinny-backend)
|
package/dist/utils/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.0.
|
|
1
|
+
export declare const VERSION = "1.0.3";
|
package/dist/utils/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.0.
|
|
1
|
+
export const VERSION = "1.0.3";
|