The Kanbas Node Server App is the backend server for the Kanbas React Web App. This server provides RESTful API endpoints for managing tasks in a Kanban-style task management application.
- RESTful API endpoints for task management
- Built with Node.js and Express.js
- Designed to work seamlessly with the Kanbas React Web App frontend
Before you begin, ensure you have met the following requirements:
- Node.js installed
- npm (Node Package Manager) installed
- nodemon installed globally (
npm install -g nodemon
)
To get the Kanbas Node Server up and running, follow these simple steps:
-
Clone the repository:
git clone https://github.com/your-username/kanbas-node-server-app.git
-
Navigate to the project directory:
cd kanbas-node-server-app
-
Install dependencies:
npm install
-
Start the server:
nodemon app.js
The server will start running on http://localhost:4000
.
The server runs on port 4000 by default. If you need to change this, you can modify the port in the app.js
file.