brainz-aggregator/app.js
Andrew Pietila 8f178392f9 Initial Commit
Added: app.js basic express http listener.
Added: migrate-tool, to automatically apply migrations, including a base migration to create a database table to track migrations.
2024-01-21 18:52:24 -06:00

5 lines
No EOL
78 B
JavaScript

const express = require('express');
const app = express();
app.listen(3000);