Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Update and rename index.js to app.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
System32-Dev authored Jun 13, 2022
1 parent 14281d6 commit 9ea4c90
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions index.js → app.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
const http = require('http');
const bare = require('./static/customBare.js');
const fs = require('fs');
import http from 'http';
import * as fs from 'fs';
import * as bare from './static/customBare.js';
import path from 'path';

const __dirname = process.cwd();

const port = 8080;

Expand Down

0 comments on commit 9ea4c90

Please sign in to comment.