// in index.js file
// This line exports a class named Application from this module
module.export = class Application {
}
// in server.js file
// This line imports the Application class from the app module
const App = require('./app');
// This line creates a new instance of the Application class
new App();
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)