
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.
babel-config-adambrgmn
Advanced tools
My basic setup for Babel. To make it work flawless run the following code:
$ npm install --save-dev babel-cli babel-config-adambrgmn babel-preset-{es2015,react,react-hmre,stage-0} babel-plugin-transform-runtime
Then create a new .stylelintrc
-file in your projects root folder, and add the following:
{
"extends": "babel-config-adambrgmn/.babelrc"
}
To be able to use all of the ES6 awsomeness when writing Node applications (or web applications for that matter) a basic setup for an index file would look something like this:
const fs = require('fs');
const path = require('path');
const babelrc = fs.readFileSync(path.join(process.cwd(), '.babelrc')); // Read the .babelrc file in your projects root
let config;
try {
config = JSON.parse(babelrc); // Try to parse that JSON, if there is something wrong all hell will brak loose
} catch (err) {
console.error('Error parsing .babelrc');
console.error(err);
}
require('babel-register')(config); // Initialize Babel with your config
require('babel-polyfill'); // Include the polygill for all the good stuff
require('./src/index'); // And finally start your engines (in here you can do all kinds of cool stuff e.g. import x from 'x' and const hey = await hello())
If you like this kind of setup you also have to run the following:
$ npm install --save babel-{register,polyfill}
FAQs
Personal babel settings
We found that babel-config-adambrgmn 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
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.