
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@aminohealth/fractal-react-adapter
Advanced tools
Use React as the template engine for Fractal components.
Forked from @sumul's original fractal-react-adapter, the adapter lets you use React as a template engine in Fractal. It's based on Fractal's Handlebars adapter. This adapter aims to maintain a React flavor rather than achieve complete feature parity with the Handlebars adapter. The goal is to facilitate writing React components that can easily be used in other projects.
Install the adapter via NPM:
npm i --save @aminohealth/fractal-react-adapter
Plug it into your fractal.js
file like so:
const reactAdapter = require("fractal-react-adapter")();
fractal.components.engine(reactAdapter);
fractal.components.set("ext", ".jsx");
The adapter uses Babel to compile React components via @babel/register (which hooks into require
or import
and automatically routes those files through Babel). By default, @babel/register
is configured to compile .jsx
files and use the @babel/preset-react
preset, but you can override these with any valid @babel/register
config (see Configuration below).
// Default babel-register config
{
extensions: ['.jsx'],
presets: ['@babel/preset-react']
}
The adapter also uses babel-plugin-module-resolver
to expose Fractal's component handles as node module names. This allows you to move a component around in the file system without worrying about rewriting your imports.
import Button from "@button";
const Button = require("@button");
These options can be overridden when the adapter is set up.
babelConfig
: any valid configuration options for @babel/registerrenderMethod
: 'renderToStaticMarkup'
or 'renderToString'
(see ReactDOMServer)const reactAdapter = require("fractal-react-adapter")({
babelConfig: {
plugins: ["@babel/plugin-proposal-class-properties"]
},
renderMethod: "renderToString"
});
FAQs
Use React as the template engine for Fractal components.
We found that @aminohealth/fractal-react-adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.