“Co to jest Mongoose” Kod odpowiedzi

Co to jest Mongoose

Mongoose is a cross-platform embedded web server and networking library.
The small footprint of the software enables any
Internet-connected device to function as a web server.
uzii

mangusta

const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:27017/test', {useNewUrlParser: true, useUnifiedTopology: true});

const Cat = mongoose.model('Cat', { name: String });

const kitty = new Cat({ name: 'Zildjian' });
kitty.save().then(() => console.log('meow'));
Fair Frog

węzeł Mongoose JS

var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function() {
  // we're connected!
});
Vivacious Vole

Odpowiedzi podobne do “Co to jest Mongoose”

Pytania podobne do “Co to jest Mongoose”

Więcej pokrewnych odpowiedzi na “Co to jest Mongoose” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu