Database.json 【PRO 2027】
In your terminal, run: npx json-server --watch database.json
: JSON requires double quotes for keys and string values; single quotes will cause an error.
Create a database.json with an initial structure: { "posts": [] } Use code with caution. Copied to clipboard database.json
import json new_post = {"id": 1, "title": "Hello from Python", "content": "Writing to JSON is easy!"} # Load existing data with open('database.json', 'r+') as file: db = json.load(file) db['posts'].append(new_post) # Seek to start and overwrite file.seek(0) json.dump(db, file, indent=2) Use code with caution. Copied to clipboard Best Practices for database.json
You can now send a POST request to http://localhost:3000/posts using fetch in JavaScript: javascript In your terminal, run: npx json-server --watch database
If you aren't using a server and just want to append data to the file locally using Node.js: javascript
If you want to treat database.json like a real REST API, json-server is the standard choice. Copied to clipboard Best Practices for database
: Always include a unique id for each post so you can find or delete it later.