Navigate:
JSON Server
~$JSON0.0%

JSON Server: Fake REST API from JSON files

Zero-config REST API server from JSON files.

LIVE RANKINGS • 10:20 AM • STEADY
OVERALL
#454
128
DEVELOPER TOOLS
#98
28
30 DAY RANKING TREND
ovr#454
·Devel#98
STARS
75.6K
FORKS
7.3K
7D STARS
-9
7D FORKS
-2
See Repo:
Share:

Learn more about JSON Server

JSON Server is a Node.js command-line tool that creates a functional REST API by reading data from a JSON or JSON5 file. It automatically generates standard HTTP endpoints (GET, POST, PUT, PATCH, DELETE) for each top-level property in the data file, handling routing and basic data operations internally. The tool supports query parameters for filtering, sorting, pagination, and nested field access, along with static file serving from a public directory. It is commonly used during frontend development, API prototyping, and testing scenarios where a real backend is not yet available.

JSON Server

1

Zero configuration setup

Requires only a JSON file to generate a complete REST API. No server code, configuration files, or build steps are needed beyond running the CLI command.

2

Query parameter filtering

Supports conditional operators (gt, gte, lt, lte, ne), range queries, pagination, sorting, and nested field access through query strings without custom endpoint logic.

3

JSON5 format support

Accepts both standard JSON and JSON5 files, allowing unquoted keys, trailing commas, and comments in data files for easier manual editing during development.


import axios from 'axios';

// Get all posts from json-server endpoint
const response = await axios.get('http://localhost:3000/posts');
const posts = response.data;

console.log(posts);

vv1.0.0-beta.5

feat: add JSON Schema

  • feat: add JSON Schema
vv1.0.0-beta.4

This release improves performance, drops Node.js 20 support, and migrates to TypeScript with pnpm.

  • perf: replace Object.entries/fromEntries with Object.keys for better performance
  • fix: handle undefined case in filtering logic
  • chore: use oxlint
  • Drop Node.js 20 support and enforce erasable TypeScript syntax
  • use TS natively and switch to pnpm
vv1.0.0-beta.3

fix: allow any request header in CORS

  • fix: allow any request header in CORS
  • chore: update all dependencies


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers