mirror of https://github.com/dapr/quickstarts.git
Clean-up a warning since express is defined to be greater than v4.16.0 by the package.json definition. (#437)
This commit is contained in:
parent
055c76484a
commit
43e6e3642f
|
@ -4,11 +4,10 @@
|
|||
// ------------------------------------------------------------
|
||||
|
||||
const express = require('express');
|
||||
const bodyParser = require('body-parser');
|
||||
require('isomorphic-fetch');
|
||||
|
||||
const app = express();
|
||||
app.use(bodyParser.json());
|
||||
app.use(express.json());
|
||||
|
||||
const daprPort = process.env.DAPR_HTTP_PORT || 3500;
|
||||
const stateStoreName = `statestore`;
|
||||
|
|
Loading…
Reference in New Issue