Я новичок в mongodb и mongoose orm.Я написал пример coffeescript для хранения данных в mongodb, но база данных не создается. Вот мой код:
mongoose = require('mongoose')
db = mongoose.connect('mongodb://localhost/test')
people = [{
bio: 'hello1'
first_name: 'jay'
last_name: 'roger'
},{
bio: 'hello2'
first_name: 'jay'
last_name: 'roger'
}]
artist_schema = new mongoose.Schema
bio: String
first_name: String
last_name: String
artist_model = mongoose.model "artist", artist_schema
artist_doc = new mongoose.Collection 'artists', db
for person in people
artist = new artist_model person
artist_doc.insert artist
После выполнения вышеописанного сценария db не создается в mongodb.
Я что-то пропустил?
С уважением, гмс