You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Json-server là một công cụ giả mạo API dựa trên dữ liệu được lưu trữ trong các tệp JSON. Nó cho phép phát triển ứng dụng frontend mà không cần máy chủ backend thực sự, giúp bạn tập trung vào việc phát triển giao diện người dùng một cách nhanh chóng và dễ dàng.
English 🏴
Json-server is an API spoofing tool based on data stored in JSON files. It allows frontend application development without the need for a real backend server, allowing you to focus on user interface development quickly and easily.
Json Server
Vietnamese 🇻🇳
Json-server là một công cụ giả mạo API dựa trên dữ liệu được lưu trữ trong các tệp JSON. Nó cho phép phát triển ứng dụng frontend mà không cần máy chủ backend thực sự, giúp bạn tập trung vào việc phát triển giao diện người dùng một cách nhanh chóng và dễ dàng.
English 🏴
Json-server is an API spoofing tool based on data stored in JSON files. It allows frontend application development without the need for a real backend server, allowing you to focus on user interface development quickly and easily.
Install
npm i -g json-server
01. Change path
02. Search or filter
http://localhost:5000/todos?completed=true
http://localhost:5000/todos/1
http://localhost:5000/todos?title_like=Book
03. Sort
http://localhost:5000/todos?_sort=title&_order=asc
http://localhost:5000/todos?_sort=id&_order=desc
04. Pagination
http://localhost:5000/todos?_page=1&_limit=10
05. filter flow condition
_gte: greater than or equal
_lte: less than or equal
http://localhost:5000/todos?id_gte=2
06. Combination
http://localhost:5000/todos?completed=true&_page=1&_limit=2
http://localhost:5000/todos?completed=false&_sort=title&_order=asc
The text was updated successfully, but these errors were encountered: