Deploy any Node.js application in seconds. Pick your runtime version, install npm packages, and go live with a free subdomain — no server configuration required.
const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({
message: 'Hello from WebSlop!',
node: process.version,
uptime: process.uptime(),
}));
});
const PORT = process.env.PORT || 3000;
server.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});WebSlop automatically detects your start script from package.json and assigns a PORT environment variable.
18, 20, 22 LTS
npm (latest)
On file change
your-app.webslop.ai
Free hosting with Node 18, 20, and 22. No credit card, no server setup.