vite-plugin-simple-json-server
v0.6.2
Published
Provide a file-based mock API for Vite in dev mode
Downloads
1,023
Maintainers
Readme
vite-plugin-simple-json-server
Provide a file-based mock API for Vite in dev mode.
- Why vite-plugin-simple-json-server
- Installation
- Usage
- OpenAPI (Swagger)
- Configuration
- Examples
- Contributing
- Changelog
- Inspirations
Why vite-plugin-simple-json-server?
This plugin is for lazy developers to create a mock API quickly. Simply place some json files into the mock folder and your file based API is ready. Out of the box you have pagination, sorting, filter and basic CRUD operations.
Additionally the plugin serves static files such as html, js, css, txt.
As well you can define the custom route's handlers in the plugin config.
As bonus, you can visualize the OpenAPI Specification schema generated by the plugin in an interactive UI (Swagger) with zero efforts.
The plugin is lightweight and has only a few dependencies.
Installation
First, install the vite-plugin-simple-json-server package using your package manager.
# Using NPM
npm add -D vite-plugin-simple-json-server
# Using Yarn
yarn add -D vite-plugin-simple-json-server
# Using PNPM
pnpm add -D vite-plugin-simple-json-serverThen, apply this plugin to your vite.config.* file using the plugins property:
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
// ...
plugins: [jsonServer()],
};Then, restart the dev server.
This configuration assumes that all json files are in the mock folder under Vite root.
To work correctly, the plugin requires Node version 15.7.0 or higher.
Usage
The vite-plugin-simple-json-server injects own middleware into development and preview servers.
By default it is invoked only for serve mode.
The plugin first serves the handler routes, then the json API and at the very end, the static files.
Any query parameters are ignored for static files.
Pagination and count is only available for array-based json. For sorting and filtering the json must be an array of objects.
If there is a parameter in the filter or sort request that is not among the json fields, that parameter will be ignored.
Let's have the products.json in the mock folder.
[
{
"id": 1,
"name": "Banana",
"price": 2,
"weight": 1,
"packing": {
"type": "box",
}
},
{
"id": 2,
"name": "Apple",
"price": 2,
"weight": 1,
"packing": {
"type": "box",
}
},
{
"id": 3,
"name": "Potato",
"price": 2,
"weight": 10,
"packing": {
"type": "bag",
}
},
...
]Pagination
Default limit is 10.
curl http://localhost:5173/products?offset=0
curl http://localhost:5173/products?offset=20For the custom limit, pass it to the query:
curl http://localhost:5173/products?offset=200&limit=100The server sets the Link response header with URLs for the first, previous, next and last pages according to the current limit. Also it sets the X-Total-Count header.
Sorting
Default sort order is ascending.
curl http://localhost:5173/products?sort=name
For the descending order prefix a field name with -:
curl http://localhost:5173/products?sort=-nameMultiply field sorting is supported.
curl http://localhost:5173/products?sort=name,-price
Use . to access deep properties.
curl http://localhost:5173/products?sort=packing.typeFiltering
curl http://localhost:5173/products?id=2
curl http://localhost:5173/products?id=2&id=3
curl http://localhost:5173/products?price=2&weight=1If the requested resource has an id property, you can append the id value to the URL.
curl http://localhost:5173/products/2
Deep properties
Use . to access deep properties.
curl http://localhost:5173/products?packing.type=boxOperators
The plugin supports ne, lt, gt, lte, gte and like operators.
curl http://localhost:5173/products?id[ne]=2
curl http://localhost:5173/products?id[gt]=1&id[lt]=10
Like is performed via RegExp.
curl http://localhost:5173/products?name[like]=ota
Count
The count will be returned in the response header X-Total-Count.
curl -I http://localhost:5173/productsYou can filter as well while count.
curl -I http://localhost:5173/products?price=2:bulb: The pagination is available with sort and filter.
CRUD
Full CRUD operations are only available for array-like JSON with a numeric id property.
Array-like
| HTTP Verb | CRUD | Entire Collection (e.g. /products) | Specific Item (e.g. /products/{id}) |
| :-------: |:-------------: | :------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------------------------------------ |
| HEAD | Read | 204 (OK), items count in X-Total-Count header. | 405 (Method Not Allowed) |
| GET | Read | 200 (OK), list of items.Use pagination, sorting and filtering to navigate large lists. | 200 (OK), single item.404 (Not Found), if ID not found. |
| POST | Create | 201 (Created), created item, Location header with link to /products/{id} containing new ID.409 (Conflict) if resource already exists.400 (Bad Request) for empty body, not valid JSON or too big body (>1e6) | 405 (Method Not Allowed). |
| PUT | Update/Replace | 405 (Method Not Allowed). | 200 (OK), replaced item.404 (Not Found), if ID not found.400 (Bad Request) for empty body, not valid JSON or too big body (>1e6) |
| PATCH | Update/Modify | 405 (Method Not Allowed). | 200 (OK), modified item.404 (Not Found), if ID not found.400 (Bad Request) for empty body, not valid JSON or too big body (>1e6) |
| DELETE | Delete | 405 (Method Not Allowed). | 204 (OK)404 (Not Found), if ID not found. |
Object
| HTTP Verb | CRUD | Entire Object (e.g. /profile) | Specific Item (e.g. /profile/{id}) |
| :-------: |:-------------: | :------------------------------------------------------ | :------------------------------------- |
| GET | Read | 200 (OK), object. | 404 (Not Found). |
| POST | Create | 201 (Created), replaced object, Location header with link to /profile.400 (Bad Request) for empty body, not valid JSON or too big body (>1e6) | 404 (Not Found). |
| PUT | Update/Replace | 200 (OK), replaced object. | 404 (Not Found). |
| PATCH | Update/Modify | 200 (OK), modified object. | 404 (Not Found). |
| DELETE | Delete | 405 (Method Not Allowed). | 404 (Not Found). |
OpenAPI (Swagger)
The plugin generates JSON according to the OpenAPI Specification v3.0.
It is available on /{api}/v3/openapi.json route.
Also you can explore your API directly on /{api}/v3/openapi page (Swagger UI).
To perform CRUD operations, the plugin assumes that each array-like JSON has a numeric id property.
Configuration
To configure this plugin, pass an object to the jsonServer() function call in vite.config.ts.
vite.config.ts
...
export default defineConfig({
plugins: [jsonServer({
handlers: ...
})]
});| Type | Required | Default value |
| :-------: | :------: | :-----------: |
| Boolean | No | false |
If true the plugin won't run its middleware while dev or preview.
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
disable: true,
}),
],
};| Type | Required | Default value |
| :--------: | :------: | :-----------: |
| String | No | mock |
It's a subfolder under the Vite root. Place all your JSON files here.
If the file name is index.* then its route will be the parent directory path.
| Type | Supported methods |
| :------------------------: | :------------: |
| json (object) | GET |
| json (array-like) | GET, POST, PUT, PATCH, DELETE |
| html | htm | shtml | GET |
| js | mjs | GET |
| css | GET |
| txt | text | GET |
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
mockDir: 'json-mock-api',
}),
],
};| Type | Required | Default value |
| :--------: | :------: | :-----------------: |
| String | No | options.mockDir |
It's a subfolder under the Vite root. An alternative to the mockDir folder for static files such as html, css and js.
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
staticDir: 'public',
}),
],
};| Type | Required | Default value |
| :--------: | :------: | :-----------: |
| String[] | No | [ '/api/' ] |
Array of non empty strings.
The plugin will look for requests starting with these prefixes.
Slashes are not obligatory: plugin will add them automatically during option validation.
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
urlPrefixes: [
'/fist-api/',
'/second-api/',
],
}),
],
};| Type | Required | Default value |
| :-------: | :------: | :-----------: |
| Boolean | No | true |
If its value is false the server won't respond with 404 error.
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
noHandlerResponse404: false,
}),
],
};| Type | Required | Default value |
| :--------: | :------: | :-----------: |
| LogLevel | No | info |
Available values: 'info' | 'warn' | 'error' | 'silent';
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
logLevel: 'error',
}),
],
};| Type | Required | Default value |
| :-------------: | :------: | :-----------: |
| MockHandler[] | No | undefined |
For the custom routes. Array of mock handlers.
The MockHandler type consists of pattern, method, handle and description fields.
pattern
String, required.
Apache Ant-style path pattern. It's done with @howiefh/ant-path-matcher.
The mapping matches URLs using the following rules:
?matches one character;*matches zero or more characters;**matches zero or more directories in a path;{spring:[a-z]+}matches the regexp[a-z]+as a path variable namedspring.
method
String, optional.
Any HTTP method: GET | POST etc;
MockFunction: (req: Connect.IncomingMessage, res: ServerResponse, urlVars?: Record<string, string>): void
req:Connect.IncomingMessagefrom Vite;res:ServerResponsefrom Node http;urlVars: key-value pairs from parsed URL.
handle
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
handlers: [
{
pattern: '/api/hello/1',
handle: (req, res) => {
res.end(`Hello world! ${req.url}`);
},
},
{
pattern: '/api/hello/*',
handle: (req, res) => {
res.end(`Hello world! ${req.url}`);
},
},
{
pattern: '/api/users/{userId}',
method: 'POST',
handle: (req, res, urlVars) => {
const data = [
{
url: req.url,
urlVars
},
];
res.setHeader('content-type', 'application/json');
res.end(JSON.stringify(data));
},
},
],
}),
],
};:exclamation: Handlers are served first. They intercept namesake file routes.
| Type | Required | Default value |
| :--------: | :------: | :-----------: |
| Number | No | 10 |
Number of items to return while paging.
Usage:
curl http://localhost:5173/products?offset=300&limit=100vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
limit: 100,
}),
],
};| Type | Required | Default value |
| :--------: | :------: | :-----------: |
| Number | No | 0 |
Add delay to responses (ms).
vite.config.ts
import jsonServer from 'vite-plugin-simple-json-server';
export default {
plugins: [
jsonServer({
delay: 1000,
}),
],
};Examples
| Example | Source | Playground | | ------- | ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | basic | GitHub | Play Online | | CRUD | GitHub | Play Online |
Contributing
You're welcome to submit an issue or PR!
Changelog
See CHANGELOG.md for a history of changes to this plugin.
