
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
bootstrap-talend-theme
Advanced tools
Base theme following Talend Style Guidelines.
Note: The example has been taken from the excellent project Bootstwatch.
npm install --save bootstrap-talend-theme
or
yarn add --dev bootstrap-talend-theme
In every project, we use webpack with sass-loader + css modules.
Create your webpack file and fill it with your own configuration.
You should at least just change the $brand-primary
first to get your own colors;
const SASS_DATA = `
$brand-primary: #77828A;
@import '~bootstrap-talend-theme/src/theme/guidelines';
`;
module.exports = {
plugins: [
// your custom plugins
],
module: {
loaders: [
{
test: /\.scss$/,
exclude: /bootstrap.scss/,
loaders: ['style', 'css?sourceMap&modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!sass'],
},
],
},
sassLoader: {
data: SASS_DATA,
},
};
and in your app you can do the following
import '!style!css!sass!bootstrap-talend-theme/src/theme/theme.scss';
sassLoader data is a sassLib params which inject the content on every @import directive.
You can now add Bootstrap markup!
yarn && yarn start
Open http://localhost:1337/ to see your changes.
FAQs
Bootstrap theme based on Talend styleguide
The npm package bootstrap-talend-theme receives a total of 3 weekly downloads. As such, bootstrap-talend-theme popularity was classified as not popular.
We found that bootstrap-talend-theme 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.