Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
react-docgen-typescript-webpack-plugin
Advanced tools
Webpack plugin to generate docgen information from Typescript React components.
Webpack plugin to generate docgen information from Typescript React components.
Add the package as a development dependency.
$ npm install --save-dev react-docgen-typescript-webpack-plugin
or
$ yarn add --dev react-docgen-typescript-webpack-plugin
Add the plugin to your Webpack configuration.
const path = require("path");
const genDefaultConfig = require("@storybook/react/dist/server/config/defaults/webpack.config.js");
const TSDocgenPlugin = require("react-docgen-typescript-webpack-plugin");
module.exports = (baseConfig, env) => {
const config = genDefaultConfig(baseConfig);
config.module.rules.push({
test: /\.tsx?$/,
include: path.resolve(__dirname, "../src"),
loader: require.resolve("ts-loader"),
});
config.plugins.push(new TSDocgenPlugin());
config.resolve.extensions.push(".ts", ".tsx");
return config;
};
Include the withInfo
decorator as normal.
Special Note:
The Storybook Info addon will only attempt to read Docgen information when the
story name matches the name of the component. So if you have a component named
ColorButton
, then you will have to use something like:
storiesOf("...", module).add("ColorButton", ...)
import * as React from "react";
import { storiesOf } from "@storybook/react";
import { withInfo } from "@storybook/addon-info";
import ColorButton from "./ColorButton";
storiesOf("Components", module).add(
"ColorButton",
withInfo({ inline: true })(() => (
<ColorButton color="blue">Color Button</ColorButton>
)),
);
This plugin is mostly a hack job at the moment. It is a work in progress so it is most likely not suitable for production. Pull requests are most welcome.
This plugin makes use of the great project: https://github.com/styleguidist/react-docgen-typescript
It is subject to the same limitations. Component docgen information can not be generated for components who are only exported as default. You can work around the issue by exporting the component using a named export.
CURRENT LIMITATION
The current implementation seems to have trouble with the compiler option module
being set to esnext
.
import * as React from "react";
interface ColorButtonProps {
/** Buttons background color */
color: "blue" | "green";
}
/** A button with a configurable background color. */
export const ColorButton: React.SFC<ColorButtonProps> = props => (
<button
style={{
padding: 40,
color: "#eee",
backgroundColor: props.color,
fontSize: "2rem",
}}
>
{props.children}
</button>
);
export default ColorButton;
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Webpack plugin to generate docgen information from Typescript React components.
The npm package react-docgen-typescript-webpack-plugin receives a total of 9,418 weekly downloads. As such, react-docgen-typescript-webpack-plugin popularity was classified as popular.
We found that react-docgen-typescript-webpack-plugin 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.