Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A minimal Node.js app in Glitch that returns 'Hello World' when visited.
const express = require("express")
const app = express()
app.get("/", (req, res) => {
res.send("Hello World")
})
app.listen(3000, () => {
console.log("Server is running on port 3000")
})Glitch is an online platform for creating, editing, and hosting web applications collaboratively. It allows users to build apps directly in the browser with instant deployment and real-time editing.
Origin & Creator
Glitch was founded by Anil Dash and Erica Baker in 2017, evolving from the earlier project ‘Fog Creek Glitch’ and ‘Hackpad’.
Industrial Note
Primarily used in web development education, hackathons, rapid prototyping, and small web projects. Less used for large-scale production apps in enterprise contexts.