skribd / run.js
rkwyu
Add eslint and jest
c9bbadf
raw
history blame
161 Bytes
import { app } from './src/App.js'
if (process.argv.length == 3) {
await app.execute(process.argv[2])
} else {
console.error(`Usage: npm start [URL]`)
}