
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@geut/brode
Advanced tools
A polyfill Node.js browser platform
$ npm install -g @geut/brode
$ brode index.js
brode
provides built-in support for uvu
and tap
like test runners.
// test.js
import { test } from 'uvu';
import * as assert from 'uvu/assert';
test('Math.sqrt()', () => {
assert.is(Math.sqrt(4), 2);
assert.is(Math.sqrt(144), 12);
assert.is(Math.sqrt(2), Math.SQRT2);
});
test('JSON', () => {
const input = {
foo: 'hello',
bar: 'world'
};
const output = JSON.stringify(input);
assert.snapshot(output, `{"foo":"hello","bar":"world"}`);
assert.equal(JSON.parse(output), input, 'matches original');
});
test.run();
$ brode test.js -p uvu --target chromium,firefox
• • (2 / 2)
Total: 2
Passed: 2
Skipped: 0
Duration: 3.00ms
Target: chromium
• • (2 / 2)
Total: 2
Passed: 2
Skipped: 0
Duration: 6.00ms
Target: firefox
You can use Node.js streams in the browser:
// reader.js
process.stdin.on('data', data => {
console.log(data.toString())
})
$ echo 'hello' | brode reader.js
hello
:bug: If you found an issue we encourage you to report it on github. Please specify your OS and the actions to reproduce it.
:busts_in_silhouette: Ideas and contributions to the project are welcome. You must follow this guideline.
MIT © A GEUT project
FAQs
A polyfill Node.js browser platform
The npm package @geut/brode receives a total of 0 weekly downloads. As such, @geut/brode popularity was classified as not popular.
We found that @geut/brode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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.