cpeak 2.2.4 → 2.2.5

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -1
package/README.md CHANGED
@@ -12,7 +12,7 @@ This is an educational project that was started as part of the [Understanding No
12
12
 
13
13
  - **Minimalism**: No unnecessary bloat, with zero dependencies. Just the core essentials you need to build fast and reliable applications.
14
14
  - **Performance**: Engineered to be fast, **Cpeak** won’t sacrifice speed for excessive customizability.
15
- - **Educational**: Every new change made in the project will be explained in great detail in a YouTube playlist (playlist will be added soon). Follow this project and let's see what it takes to build an industry-leading product!
15
+ - **Educational**: Every new change made in the project will be explained in great detail in this [YouTube playlist](https://www.youtube.com/playlist?list=PLCiGw8i6NhvqsA-ZZcChJ0kaHZ3hcIVdY). Follow this project and let's see what it takes to build an industry-leading product!
16
16
  - **Express.js Compatible**: You can easily refactor from Cpeak to Express.js and vice versa. Many npm packages that work with Express.js will also work with Cpeak.
17
17
 
18
18
  ## Table of Contents
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cpeak",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "A minimal and fast Node.js HTTP framework.",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -19,6 +19,8 @@
19
19
  "license": "MIT",
20
20
  "keywords": [
21
21
  "cpeak",
22
+ "backend",
23
+ "router",
22
24
  "nodejs",
23
25
  "http",
24
26
  "framework"