Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
babel-plugin-transform-relay-hot
Advanced tools
Wrapper for babel-relay-plugin which track changes in the graphql schema file and hot swap them without restart dev server with babel
Babel 6 plugin for transforming graphql
literals and Relay.QL
tagged templates (when "compat": true
). It uses json/graphql file with GraphQL schema. This plugin wraps babel-plugin-relay. Each time the schema file changes, the wrapper updates instance of babel-plugin-relay
with new schema without completely restarting dev server.
yarn add babel-plugin-transform-relay-hot --dev
or
npm install babel-plugin-transform-relay-hot --save-dev
{
"plugins": [
["transform-relay-hot", {
"schema": "./build/schema.graphql",
"watchInterval": 2000,
"verbose": true
}],
]
}
schema
String
watchInterval
Number
mtime
of json file. Internally used setTimeout().unref()
cause fs.watch
blocks babel from exit.watchInterval: 0
.verbose
Boolean
babel-plugin-relay
Use "compat": true
option for Relay Classic.
schema.graphql
or schema.graphql.json
filesYou may use webpack-plugin-graphql-schema-hot or do it manually:
import fs from 'fs';
import path from 'path';
import { printSchema } from 'graphql';
import Schema from './schema';
export default function generateSchema() {
fs.writeFileSync(
path.join(__dirname, './build/schema.graphql'),
printSchema(schema)
);
}
import fs from 'fs';
import path from 'path';
import { graphql, introspectionQuery } from 'graphql';
import Schema from './schema';
export default async function generateSchemaJson() {
const result = await (graphql(Schema, introspectionQuery));
fs.writeFileSync(
path.join(__dirname, './build/schema.graphql.json'),
JSON.stringify(result, null, 2)
);
}
Webpack plugin which tracks changes in your GraphQL Schema files and generates schema introspection in json
and txt
formats. webpack-plugin-graphql-schema-hot
can freeze Webpack, while this plugin catch changes from json
file. For this you need set waitOnStart
and waitOnRebuild
options (in Webpack plugin) equal to watchInterval
(from this babel plugin):
import path from 'path';
import WebpackPluginGraphqlSchemaHot from 'webpack-plugin-graphql-schema-hot';
const config = {
// ...
plugins: [
new WebpackPluginGraphqlSchemaHot({
schemaPath: path.resolve(__dirname, '../schema/index.js'),
output: {
json: path.resolve(__dirname, '../build/schema.graphql.json'),
txt: path.resolve(__dirname, '../build/schema.graphql'),
},
runOnStart: true,
waitOnStart: 2000, // <----- value from `watchInterval`
waitOnRebuild: 2000, // <----- value from `watchInterval`
verbose: true,
}),
]
}
For eslint
checks of Relay.QL
tagged templates you may use eslint-plugin-graphql
. It also tracks changes of graphql schema json file with following config:
// In a file called .eslintrc.js
const path = require('path');
module.exports = {
parser: "babel-eslint",
rules: {
"graphql/template-strings": ['error', {
env: 'relay',
schemaJsonFilepath: path.resolve(__dirname, './build/schema.graphql.json'),
}]
},
plugins: [
'graphql'
]
}
GraphQL language support for IntelliJ IDEA and WebStorm, including Relay.QL tagged templates in JavaScript and TypeScript.
Trigger webpack rebuilds after your GraphQL Schema has been updated and saved to JSON..
MIT
FAQs
Wrapper for babel-relay-plugin which track changes in the graphql schema file and hot swap them without restart dev server with babel
The npm package babel-plugin-transform-relay-hot receives a total of 291 weekly downloads. As such, babel-plugin-transform-relay-hot popularity was classified as not popular.
We found that babel-plugin-transform-relay-hot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.