Skip to content
This repository has been archived by the owner on Mar 2, 2025. It is now read-only.

Commit

Permalink
Start work on backend RESTful API
Browse files Browse the repository at this point in the history
  • Loading branch information
robiworks committed Dec 29, 2021
1 parent 5f9933f commit 352b03e
Show file tree
Hide file tree
Showing 4 changed files with 1,367 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
9 changes: 9 additions & 0 deletions backend/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const express = require('express');
const app = express();
const port = 8080;

app.use(express.json());

app.listen(port, () => {
console.log(`Novogradko RESTful API is running on port ${port}.`);
});
Loading

0 comments on commit 352b03e

Please sign in to comment.