From 6d34f0146a43521bfbb187c070be2fce8e0d8ea9 Mon Sep 17 00:00:00 2001 From: counterweight Date: Wed, 5 Feb 2025 12:20:53 +0100 Subject: [PATCH] initial commit --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3fcf031 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Express hello world + +A joke application. + +## How to set up + +Note: I'm assuming you're running Ubuntu 22.04. + +* Get nodejs and npm ready + - Run `sudo apt update` and `sudo apt install nodejs`. Check that worked with `node -v`. + - Run `sudo apt install npm`. Check that worked with `npm -v`. +* Init an npm project.