jeśli chcesz, aby coś z modułu db było dostępne w innych modułach, musisz to ujawnić, używając module.exports
dodaj na końcu swojego db.js
plik:
module.exports = {
appModel : appModel,
Device : Device
};
a następnie w swoim index.js
możesz zrobić:
device = new connection.Device({
id: 93,
name: 'test1'
});
więcej na ten temat przeczytasz tutaj