@ms-cloudpack/create-express-app 1.10.51 → 1.10.52

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 -17
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,19 +1,3 @@
1
1
  # @ms-cloudpack/create-express-app
2
2
 
3
- Helper for creating an express app server, abstracting a common plugin setup.
4
-
5
- ## Usage
6
-
7
- ```js
8
- import { createExpressApp } from '@ms-cloudpack/create-express-app';
9
-
10
- const app = creatExpressApp([5000, 5001], (app) => {
11
- // Set up routes.
12
- app.get('*', async (req, res) => {
13
- res.send(`<html>...</html>`);
14
- });
15
- });
16
-
17
- // Stop app when you're done.
18
- app.close();
19
- ```
3
+ Cloudpack's internal helper for creating an Express server, abstracting a common plugin setup.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/create-express-app",
3
- "version": "1.10.51",
4
- "description": "Helper for creating an express app server, abstracting a common plugin setup.",
3
+ "version": "1.10.52",
4
+ "description": "Helper for creating an Express server, abstracting a common plugin setup",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "types": "./lib/index.d.ts",
@@ -14,10 +14,10 @@
14
14
  }
15
15
  },
16
16
  "dependencies": {
17
- "@ms-cloudpack/common-types": "^0.27.7",
17
+ "@ms-cloudpack/common-types": "^0.28.0",
18
18
  "@ms-cloudpack/path-string-parsing": "^1.2.7",
19
- "@ms-cloudpack/path-utilities": "^3.1.22",
20
- "@ms-cloudpack/setup-utilities": "^0.5.43",
19
+ "@ms-cloudpack/path-utilities": "^3.1.23",
20
+ "@ms-cloudpack/setup-utilities": "^0.5.44",
21
21
  "@types/express": "^4.17.16",
22
22
  "compression": "^1.7.4",
23
23
  "cors": "^2.8.5",