Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
ohm-builder
Advanced tools
Bring ohm to your browser the easy way.
What's Ohm? Check it out.
This requires Node v4+
$ npm install --save-dev ohm-builder
Ohm has steps on defining your grammar for either the browser or node, but not both. Don't like having two sets of steps? Keep reading...
HTML's <script>
tag only allows you to use the src=
attribute if you're
using a path to a javascript file, not an Ohm grammar. Let's fix that.
Now you can write your HTML with script tags like: <script type="text/ohm-js" src="src/bash.ohm"></script>
. Run this tool and you can statically generate a
new HTML file with the grammar included.
Try it out as an npm script:
// put this in package.json
"scripts": {
// ...
"build": "ohm-builder.js src/index.generator.html index.html"
},
$ # Make your edits in src/index.generator.html
$ # Then run this command to build index.html
$ npm run build
If you don't want to constantly reenter that command, check out watch
to
automatically recompile your project:
$ npm install --save-dev watch
Then, assuming your file is inside src/
, put this in package.json
:
"scripts": {
// ...
"build": "ohm-builder.js src/index.generator.html index.html",
"build:watch": "watch 'npm run build' src"
},
FAQs
Bring ohm to your browser the easy way
The npm package ohm-builder receives a total of 0 weekly downloads. As such, ohm-builder popularity was classified as not popular.
We found that ohm-builder 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
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.