Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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 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.json",
"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.
graphql.schema.json
fileYou may use webpack-plugin-graphql-schema-hot or do it manually:
import fs from 'fs';
import path from 'path';
import { graphql, introspectionQuery } from 'graphql';
import Schema from './schema';
export default async function generateSchema() {
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 file path should be equal to `schemaJsonFilepath`
json: path.resolve(__dirname, '../build/schema.graphql.json'),
txt: path.resolve(__dirname, '../build/schema.graphql.txt'),
},
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 101 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.