File size: 181 Bytes
f39c319
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import fs from 'fs';
import app from './src/index';

const server = app.listen(3001, async () => {
  console.log('Server started on 3001');
  server.close();
  process.exit(0);
});