Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@jcoreio/js
Advanced tools
This is my personal skeleton for creating an npm package with JS(/flow) source code.
src
test
. You can override this by specifying options for mocha in ['@jcoreio/js'].mochaArgs
in your package.json
.semantic-release
yarn add --dev @jcoreio/js
yarn toolchain bootstrap
If you want to more aggressively replace existing configuration, use yarn toolchain bootstrap --hard
.
The bootstrap script will modify your package.json, .gitignore, .circleci/config.yml and generate .babelrc.js, .eslintrc.js, and .prettierrc.js that are just proxies for the config in @jcoreio/js
.
Instead of running scripts from your package.json
, you can run them with the yarn toolchain
command (or yarn tc
), for example yarn toolchain lint
. Run yarn toolchain
by itself
to see all of the available commands.
You can customize the config files created by the bootstrap process:
babel.config.js
commitlint.config.js
husky.config.js
lint-staged.config.js
nyc.config.js
prettier.config.js
You can also set the following options in the @jcoreio/js
property in your package.json
:
mochaArgs
: an array of additional arguments to mocha (default: ["test/**.js"], or .ts
/.tsx
depending on the toolchain)noBabelRuntime
: if true
, disables @babel/plugin-transform-flow-runtime
For example:
{
"name": "foo",
"@jcoreio/js": {
"mochaArgs": ["test/index.js"]
}
}
babel.config.js
You can pass a second argument to the base babel config like this:
/* eslint-env node */
module.exports = function (api) {
return require(`@jcoreio/js/babel.config.js`)(api, {
envPresetOptions: {
target: {node: 12},
forceAllTransforms: false,
},
babelRuntime: false,
})
}
It accepts the following options:
envPresetOptions
: overrides options for @babel/preset-env
babelRuntime
: if false
, won't use @babel/plugin-transform-runtime
Files to publish are output/copied into the dist
folder and then published from there. This includes a derived
package.json
with various development-only fields removed and automatically-generated main
, module
, and exports
fields added.
The toolchain will do the following for JS (similar for TS):
src/**.js
to dist/**.js
(CommonJS modules)src/**.js
to dist/**.mjs
(ES modules)src/**.js
to dist/**.js.flow
src/**.js.flow
to dist
src/**.d.ts
to dist
*.md
to dist
package.json
to dist
with modifications:
main
from root package.json
or auto-generated valuemodule
from root package.json
or auto-generated valueexports
from root package.json
or auto-generated value@babel/runtime
will be added or removed from dependencies
depending on whether any output code requires itconfig
devDependencies
files
husky
lint-staged
nyc
scripts.prepublishOnly
renovate
FAQs
build tools and package scripts for npm packages
We found that @jcoreio/js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.