# Building a REST API with Node.js Learn how to create a robust RESTful API. ## Setup ```bash npm init -y npm install express ``` ## Basic Server ```javascript const express = require('express'); const app = express(); app.get('/api/users', (req, res) => { res.json({ users: [] }); }); app.listen(3000); ```