Socket
Socket
Sign inDemoInstall

vite-plugin-json-server

Package Overview
Dependencies
207
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vite-plugin-json-server

A plugin that integrates json-server with Vite.js, providing a simple way to mock REST APIs during development.


Version published
Weekly downloads
43
increased by19.44%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

vite-plugin-json-server vite-plugin-json-server

Description

vite-plugin-json-server is a plugin for Vite.js that integrates the json-server library, providing a simple way to serve a mock RESTful API during development. It enables you to quickly set up a server and define JSON data as endpoints, allowing you to simulate backend functionality without the need for a real server. This plugin is designed to seamlessly integrate with Vite.js, leveraging its fast and efficient development server. By combining the power of Vite.js and json-server, you can streamline your frontend development process and focus on building your application.

Motivation

During frontend development, it is often necessary to work with an API before the actual backend is ready or available. This can cause delays and hinder the development process. With vite-plugin-json-server, you can overcome this hurdle by creating a mock API server with minimal effort. It allows you to define your data, endpoints, and even custom routes, providing a flexible and efficient solution for frontend development.

How to Use

  1. Install the plugin using npm or yarn:
npm install vite-plugin-json-server --save-dev

or

yarn add vite-plugin-json-server --dev
  1. Import and use the plugin in your vite.config.js file:
import jsonServer from "vite-plugin-json-server";
export default {
  plugins: [
    jsonServer({
      // Configuration options
    }),
  ],
};
  1. Start your Vite development server:
npm run dev
  1. Your mock API server will be available at http://localhost:5173 by default.

Configuration

The plugin supports the following configuration options:

  • apiPath: The base path for publishing json-server services. Default value: '/api'.
  • profile: The profile name as directory name where other files are referenced. It can be used to customize data profile as needed. The default value is an empty string. You can use 'db-dev' or 'db1' as profile names.
  • source: The resource to load and pass as main parameters to json-server. It is used with join(profile, source) when compiling.
  • static: The name of the profile that contains static files. It is derived from join(profile, source).
  • unwatch: An inverse flag for the watch option that monitors and reloads the server when changes are detected.
  • readOnly: A flag for json-server to enable read-only mode.
  • bodyParser: A flag for json-server to enable body parsing.
  • noCors: A flag for json-server to disable CORS (Cross-Origin Resource Sharing).
  • noGzip: A flag for json-server to disable Gzip compression.
  • delay: The delay value for json-server to simulate network latency.
  • id: The value for json-server's id option.
  • foreignKeySuffix: The value for json-server's foreignKeySuffix option.
  • quiet: The value for json-server's quiet option. Please refer to the json-server documentation for more details on these configuration options.

Note: The following options are not yet supported by the plugin and will be implemented in a future version: routes, snapshots, and middlewares.

Note: The host and port options are excluded form the plugin.

License

This plugin is licensed under the MIT License.

Keywords

FAQs

Last updated on 26 Jun 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc