wxexpress 1.0.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.
Files changed (4) hide show
  1. package/README.md +150 -0
  2. package/cjsindex.cjs +46439 -0
  3. package/mjsindex.mjs +46437 -0
  4. package/package.json +47 -0
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "wxexpress",
3
+ "version": "1.0.0",
4
+ "description": "wsexpress enables WebSocket routes in Express applications just like normal HTTP routes, with full middleware support.",
5
+ "keywords": [
6
+ "websocket",
7
+ "websockets",
8
+ "ws",
9
+ "express",
10
+ "express-ws",
11
+ "wsexpress",
12
+ "realtime",
13
+ "real-time",
14
+ "socket",
15
+ "server",
16
+ "nodejs",
17
+ "http",
18
+ "api",
19
+ "router",
20
+ "middleware",
21
+ "event-driven",
22
+ "network",
23
+ "streaming",
24
+ "chat",
25
+ "live"
26
+ ],
27
+ "homepage": "https://github.com/Suryavs2011/wsexpress#readme",
28
+ "bugs": {
29
+ "url": "https://github.com/Suryavs2011/wsexpress/issues"
30
+ },
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/Suryavs2011/wsexpress.git"
34
+ },
35
+ "license": "ISC",
36
+ "author": "Surya V S(developersuryavs@suryavs.net.in)",
37
+ "type": "module",
38
+ "main": "./cjsindex.cjs",
39
+ "exports": {
40
+ "import": "./mjsindex.mjs",
41
+ "require": "./cjsindex.cjs"
42
+ },
43
+ "scripts": {
44
+ "test-cjs": "node cjsindex.cjs",
45
+ "test-mjs": "node mjsindex.mjs"
46
+ }
47
+ }