
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.
cra-template-typescript-linting-styling-storybook
Advanced tools
A template with typescript, linting, styling and storybook.
Includes TypeScript, Prettier, Eslint, Styled-Components, Styled-Systems, Storybook.
To add a story to the storybook add a <component name>.stories.tsx
file in the CSF format.
Add the following property to the VSCode Settings (JSON) to enable prettier and eslint linting automatically on document save. On Mac CMD + Shift + P
and select Preferences: Open Settings (JSON)
.
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
Customize [src/]utils/theme.ts
as described at the styled-systems docs.
The following creates a box with a padding of 16px
based on the theme value.
const PaddedBox: React.FC = ({ children }) => {
return <Box p={3}>{children}</Box>;
};
// [src/]utils/theme.ts
// ...
const space = [0, 4, 8, 16, 32, 64, 128, 256, 512];
The ThemeDecorator
is applied as a wrapper in the AppProvider
component at [src/]components/AppProvider.tsx
.
The Box
component is included and useful to extend for custom styled components.
The baseUrl
property in the tsconfig.json
is set to src
.
FAQs
A template with typescript, linting, styling and storybook.
We found that cra-template-typescript-linting-styling-storybook 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
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.