
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
react-ui-components
Advanced tools
React Components Library
To install the latest release:
npm install react-ui-components
After npm install, you'll find all the source code in the src/ folder and their compiled results in the /lib folder. And some basic styles of components in scss/ folder.
Once react-ui-components is installed in your project, you can use like this:
/** MyFirstReactComponent.jsx */
var React = require('react');
var Components = require('react-ui-components');
var SimpleButton = Components.SimpleButton;
var LinkButton = Components.LinkButton;
module.exports = React.createClass({
render: function(){
return (
<div className="btn-demo">
<SimpleButton
customClass="default-btn"
label="A button element" >
</SimpleButton>
<SimpleButton
customClass="submit-btn"
label="A submit element"
onTap={this._onTap} >
</SimpleButton>
<LinkButton
customClass="anchor-btn"
label="A anchor"
href="http://www.baidu.com/" >
</LinkButton>
</div>
);
},
_onTap: function(e){
alert('Clicked...')
}
});
/** app.jsx */
var React = require('react');
var injectTapEventPlugin = require('react-tap-event-plugin');
var Buttons = require('./MyFirstReactComponent.jsx');
React.render(<Buttons />, document.getElementById('main'))
To help you get started, you can find complete example in /examples folder or visit the website
FAQs
A collection of UI components for React
We found that react-ui-components 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.