UNPKG
boiler-magic
Version:
latest (1.0.9)
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
A boilerplate generator for Node.js apps
github.com/Fahad123k/boiler-magic
Fahad123k/boiler-magic
boiler-magic
/
templates
/
model.js
8 lines
(5 loc)
•
176 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
mongoose
=
require(
"mongoose"
);
const
__NAME__Schema
=
new
mongoose
.Schema({
// define fields here
});
module
.
exports
= mongoose.model(
"__NAME__"
, __NAME__Schema);