sails.js
Adattatore MongoDB per vele
Ricerca…
Configurazione
È possibile configurare le impostazioni del database in config/connections.js
.
Esempio:
someMongoDb: {
adapter: 'sails-mongo',
host: 'localhost', // defaults to `localhost` if omitted
port: 27017, // defaults to 27017 if omitted
user: 'username_here', // or omit if not relevant
password: 'password_here', // or omit if not relevant
database: 'database_name_here' // or omit if not relevant
}
In alternativa, puoi specificare la tua configurazione di Mongo come URL
someMongoDb: {
adapter: 'sails-mongo',
url: mongodb://username:password@hostname:port/database
}
Installazione
Installa da NPM.
npm install sails-mongo --save
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow