Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@jetbrains/ring-ui
Advanced tools
This collection of UI components aims to provide all the necessary building blocks for web-based products built inside JetBrains, as well as third-party plugins developed for JetBrains' products.
create-react-app
tooling, to see and try the UI componentsnpm install @jetbrains/ring-ui-built
npm install @jetbrains/ring-ui
You will then need to include building Ring UI into your WebPack build (see "Building Ring UI from source via Webpack" below)The easiest way is to import necessary components as ES modules:
// You need to import RingUI styles once
import '@jetbrains/ring-ui-built/components/style.css';
import alertService from '@jetbrains/ring-ui-built/components/alert-service/alert-service';
import Button from '@jetbrains/ring-ui-built/components/button/button';
...
export const Demo = () => {
return (
<Button onClick={() => alertService.successMessage('Hello world')}>
Click me
</Button>
);
};
The bundle size will depend on the amount of components you imported.
In case you have complex build, and you want to compile RingUI sources together with your sources in a same build process, you can use the following configuration:
Install Ring UI with npm install @jetbrains/ring-ui --save-exact
If you are building your app with webpack, make sure to import
ring-ui components where needed. Otherwise, create an entry point (for example, /app/app__components.tpl.js
) and
import
the components there.
import React from 'react';
import ReactDOM from 'react-dom';
import LoaderInline from '@jetbrains/ring-ui/components/loader-inline/loader-inline';
ReactDOM.render(<LoaderInline/>, document.getElementById('container'));
Create webpack.config.js
with the following contents (example):
const ringConfig = require('@jetbrains/ring-ui/webpack.config').config;
const webpackConfig = {
entry: 'src/entry.js', // your entry point for webpack
output: {
path: 'path/to/dist',
filename: '[name].js'
},
module: {
rules: [
...ringConfig.module.rules,
<Your rules here>
]
}
};
module.exports = webpackConfig;
See CONTRIBUTING.md
FAQs
JetBrains UI library
The npm package @jetbrains/ring-ui receives a total of 2,115 weekly downloads. As such, @jetbrains/ring-ui popularity was classified as popular.
We found that @jetbrains/ring-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.