
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
@8base/boost
Advanced tools
[](https://travis-ci.org/8base/boost)
Storybook - https://8base.github.io/boost/
yarn storybook
docker pull vorobeez/puppeteer-e2e-chrome:74.0.3729.169-1
docker run --privileged --name e2e-chrome -p 9222:9222 -d vorobeez/puppeteer-e2e-chrome:74.0.3729.169-1
yarn e2e:update
import { BoostProvider, Button } from '@8base/boost';
const App = () => {
return (
<BoostProvider>
...
<Button>Some Text</Button>
</BoostProvider>
)
}
import { BoostProvider, createTheme } from '@8base/boost';
const customTheme = createTheme({
/** Change the pallete of the color. */
COLORS: {
PRIMARY: '#3EB7F9',
PRIMARY_TEXT_COLOR: 'darkorange',
SECONDARY_TEXT_COLOR: 'orange',
},
/** Change the custom components styles if it needed. */
components: {
input: {
root: {
borderColor: 'gray',
},
modifiers: {
hasError: {
borderColor: 'red',
}
}
},
button: ({ COLORS, SIZES }) => ({
root: {
fontSize: SIZES.OVERLINE_1,
},
modifiers: {
disabled: {
backgroundColor: COLORS.RED,
},
},
}),
},
});
const App = () => {
return (
<BoostProvider theme={ customTheme }>
...
</BoostProvider>
)
}
To expand icons pack you should add babel-plugin-inline-react-svg or describe svg components manual.
import { BoostProvider, createTheme } from '@8base/boost';
import SomeSvgIcon from './some-svg-icon.svg';
import AnotherSvgIcon from './another-svg-icon.svg';
const icons = {
SomeSvgIcon,
AnotherSvgIcon,
}
const App = () => {
return (
<BoostProvider icons={ icons }>
...
<Icon name="AnotherSvgIcon" size="lg" color="RED" />
</BoostProvider>
)
}
At the first you need to add install awesome font to the index.html as described in the fontawesome docs.
import { BoostProvider, createTheme } from '@8base/boost';
const App = () => {
return (
<BoostProvider>
...
<Icon className="fas fa-igloo" color="RED" size="lg" />
</BoostProvider>
)
}
FAQs
[](https://travis-ci.org/8base/boost)
The npm package @8base/boost receives a total of 1,334 weekly downloads. As such, @8base/boost popularity was classified as popular.
We found that @8base/boost demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies