New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vite-plugin-relay-custom

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-relay-custom

A vite plugin for relay

latest
Source
npmnpm
Version
1.0.7
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Vite Plugin Relay

NPM CI workflow

Add relay support to your Vite projects.

Created with the help of @Brendonovich and thanks to @kesne for adding pnpm support.

Usage

Add vite-plugin-relay and relay to your project.

yarn add react-relay relay-runtime
yarn add -D relay-compiler relay-config vite-plugin-relay

Next setup NPM scripts in the package.json. One is required for Vite and the other for the Relay Compiler

"scripts": {
  "dev": "vite",
  "relay": "relay-compiler"
},

Next setup relay.config.js more information about this can be found in the official relay docs.

Finally add vite-plugin-relay to your Vite configuration (vite.config.ts).

import { defineConfig } from "vite";
import relay from "vite-plugin-relay";

export default defineConfig({
  plugins: [..., relay],
});

Now your project is setup to use Relay with Vite!

Common Issues

Uncaught ReferenceError: global is not defined

If you experience this error in your browser console when using the plugin add the following define to your index.html file before importing your Javascript:

<script>
  let global = globalThis;
</script>

Server Side Rendering

If you are planning to use this plugin with server side rendering you may need to define window. You could do this by putting the following snippet in your entry-server.js file.

if (typeof (window as any).global === 'undefined') {
  (window as any).global = globalThis;
}

Keywords

graphql

FAQs

Package last updated on 26 Aug 2022

Did you know?

Socket

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