Writing Code
Fast
Codepencil is an online coding app for
writing code fast and reliably.
Codepencil is an online coding app for
writing code fast and reliably.
const express = require("express")(); const app = express(); app.get("/", (req, res) => { res.send("Hello World!"); }); app.get("/hello", (req, res) => { res.send("Hello!"); }); app.listen(8080, () => { console.log("Started Server!") })
Start a project by choosing one of 3
coding languages in the Navigation Bar
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Join Codepencil</title> <link rel="stylesheet" href="/css.css"> </head> <body style="text-align: center"> <h1>Join Codepencil!</h1> <br> <button>Join!</button> </body> </html>
Start programming, and code your project
with your chosen coding language.
Save, finalize, and run your new program.