Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
babel-plugin-react-relay
Advanced tools
Babel plugin for Relay (react-relay) with easy schema configuration in .babelrc
Babel plugin for Relay which works out of the box with your GraphQL endpoint
This package uses babel-relay-plugin
internally but makes usage more convenient and extends its functionality. For example you no longer need to have a build/babelRelayPlugin.js
script.
(The version is the same as babel-relay-plugin
by the way.)
$ npm install -D babel-plugin-react-relay
Note: We recently switched over to graphql-config, so this might be a breaking change for you.
.babelrc
Add the following to your .babelrc
file or the corresponding babel configuration.
{
"plugins": ["react-relay"]
}
This plugin uses the graphql-config format and already works out of the box if you're using another GraphQL dev tool such as this great IntelliJ Plugin.
Add one of the following source options to your package.json
file. See here for more configuration details.
For your convenience, here is the easiest way to configure your GraphQL endpoint:
export GRAPHQL_ENDPOINT="https://your.api/graphql"
graphql-js
as configuration optionFor those intending to directly reference their backend schema.js
, you will need to ensure a single version of graphql
exists in node_modules
. However as of this writing, babel-relay-plugin
and graphql-config-parser
reference incompatible versions of graphql
(context). A workaround is to force the graphql dependency within npm-shrinkwrap.json
at your project's root (make sure to adapt as currently relevant):
{
"dependencies": {
"babel-relay-plugin": {
"version": "0.9.3",
"from": "babel-relay-plugin@0.9.3",
"dependencies": {
"graphql": {
"version": "0.7.1",
"from": "graphql@0.6.2"
}
}
}
}
}
Then run npm prune
, npm install
and npm dedupe
for good measure.
Join our Slack community if you run into issues or have questions. We love talking to you!
FAQs
Babel plugin for Relay (react-relay) with easy schema configuration in .babelrc
The npm package babel-plugin-react-relay receives a total of 20 weekly downloads. As such, babel-plugin-react-relay popularity was classified as not popular.
We found that babel-plugin-react-relay 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.