UNPKG
oxeo
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Single command MERN stack creation tool.
github.com/FedoraGameDev/oxeo
FedoraGameDev/oxeo
oxeo
/
template
/
src
/
models
/
helloModel.js
11 lines
(9 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module
.
exports
= { build: vars => `
const
mongoose
=
require(
"mongoose"
);
const
Schema
=
mongoose.Schema;
const
HelloSchema
=
new
Schema
({ message: String });
const
Hello
=
mongoose.model(
"Hello"
, HelloSchema);
module
.
exports
= Hello;` }