
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Documentation here: https://joegasewicz.github.io/greenprint/
Greenprint is a collections or useful features that extends a ReactJS project. Another goal is to not use any other util / helper libraries so Greenprint can target the smallest pkg size possible.
npm install greenprint
Install style-loader
& css-loader
loaders to your project & add the following to your webpack.config.js file
create-react-app
then this is already taken care of for you. rules: [
{
test:/\.css$/,
use:['style-loader','css-loader']
},
]
const StyledDiv = styling.css("h1")`
backgroundColor: blue;
color: peru;
`;
const StyledNav = styling.css(Navbar)`
backgroundColor: red;
color: green;
`;
/** <div style="background-color: blue; color: peru;">Hello</div> **/
<StyledDiv>Hello</StyledDiv>
/** Renders a Bootstrap v.4 navbar <nav class="navbar..." style="background-color: red; color: green;> **/
<StyledNav />
// Example Navbar
// Creates a bootstrap 4 styled navbar. You can specify the links by adding an array of objects
// with key values of ``name`` for the link name & ``url`` for the actual url path.
<Navbar
img="path/to/your/site-logo"
brand="your Site Name"
links={[{ name: 'Home', url: '/path'}]}
/>
// Pipe
import { utils } from "greenprint";
const fooResults = utils.pipe<{}>(
foo1,
foo1,
)(data);
This project is licensed under the MIT License - see the LICENSE.md file for details
FAQs
React UI component library inspired by Blueprint
We found that greenprint 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.