Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
245040f416 | |||
|
ae9afd27e0 | ||
a960fd0905 | |||
|
f52e4eab4b | ||
4cc094643c | |||
|
9fddeeb696 | ||
5104959da5 |
@ -1,2 +1,4 @@
|
||||
lib/
|
||||
node_modules/
|
||||
node_modules/
|
||||
example/
|
||||
rollup.config.js
|
@ -14,8 +14,13 @@ npm install @dm1sh/eserver
|
||||
|
||||
```typescript
|
||||
import eServer from "@dm1sh/eserver"
|
||||
import cors from "cors"
|
||||
|
||||
const app = new eServer()
|
||||
|
||||
app.use(cors())
|
||||
|
||||
app.route("/", (req, res) => res.send("Welcome home"))
|
||||
|
||||
app.listen(5000)
|
||||
```
|
||||
|
10
example/index.js
Normal file
10
example/index.js
Normal file
@ -0,0 +1,10 @@
|
||||
const eServer = require("@dm1sh/eserver")
|
||||
// import cors from "cors"
|
||||
|
||||
const app = new eServer()
|
||||
|
||||
// app.use(cors())
|
||||
|
||||
app.route("/", (req, res) => res.send("Welcome home"))
|
||||
|
||||
app.listen(5000)
|
18
yarn.lock
18
yarn.lock
@ -620,9 +620,9 @@ get-stdin@^6.0.0:
|
||||
integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
|
||||
|
||||
glob-parent@^5.0.0, glob-parent@^5.1.0:
|
||||
version "5.1.1"
|
||||
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
|
||||
integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
|
||||
version "5.1.2"
|
||||
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
|
||||
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
||||
dependencies:
|
||||
is-glob "^4.0.1"
|
||||
|
||||
@ -776,9 +776,9 @@ levn@^0.4.1:
|
||||
type-check "~0.4.0"
|
||||
|
||||
lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19:
|
||||
version "4.17.20"
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
|
||||
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
|
||||
version "4.17.21"
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
||||
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
||||
|
||||
make-error@^1.1.1:
|
||||
version "1.3.6"
|
||||
@ -864,9 +864,9 @@ path-key@^3.1.0:
|
||||
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
||||
|
||||
path-parse@^1.0.6:
|
||||
version "1.0.6"
|
||||
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
|
||||
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
|
||||
version "1.0.7"
|
||||
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
||||
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
||||
|
||||
path-type@^4.0.0:
|
||||
version "4.0.0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user