Initial commit
This commit is contained in:
33
projects/express-app.ts
Normal file
33
projects/express-app.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
export const EXPRESS_APP = {
|
||||
'index.js': {
|
||||
file: {
|
||||
contents: `import express from 'express';
|
||||
const app = express();
|
||||
const port = 3111;
|
||||
|
||||
app.get('/', (req, res) => {
|
||||
res.send('Welcome to a WebContainers app! 🥳');
|
||||
});
|
||||
|
||||
app.listen(port, () => {
|
||||
console.log(\`App is live at http://localhost:\${port}\`);
|
||||
});`,
|
||||
},
|
||||
},
|
||||
'package.json': {
|
||||
file: {
|
||||
contents: `
|
||||
{
|
||||
"name": "example-app",
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"express": "latest",
|
||||
"nodemon": "latest"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "nodemon --watch './' index.js"
|
||||
}
|
||||
}`,
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user