Back to Features
Features
Control Center
CLEAR
PROPERTIES
• ID: --
Action Required
Overview
Tasks
Activity
Settings
Cancel
Create Feature
Confirm Action
Are you sure?
Cancel
Confirm
Action Successful
Select Repository
Development Environment
Web Preview
VS Code
Terminal
feat/user-auth
.worktrees/feat-user-auth
PR #247
3
0
2
Open in Browser
Web Preview
Your application is running on localhost:3000
Server Running
EXPLORER
src
public
package.json
README.md
index.js
1
import
express
from
'express'
;
2
3
const
app =
express
();
4
5
app.
get
(
'/'
, (req, res) => {
6
res.
send
(
'Hello World!'
);
7
});
➜
~/project
npm run dev
> dev
> next dev
✓ Ready in 2.3s
- Local:
http://localhost:3000
- Network:
http://192.168.1.100:3000
✓ Compiled in 458ms
✓ Ready
➜
~/project
▋