Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@eroc/core
Advanced tools
core is a concept introduced by Nicholas C. Zakas in this video
It helps you create scalable applications written in Javascript, giving you some structure and patterns to keep everything separated.
Conceptually, everything in your application is a module, and your modules should work independently from each other, so if one module breaks, the others should not.
The central piece is the core.
A module should never talks directly to another module, for that you use a combination of listeners and notifications.
So let's think about the twitter page, and how we could re-build it using the core concept
Everything inside a red square is a module, they work independently.
npm i @eroc/core
Raw import
import { Core, ALL, ERROR } from "./node_modules/@eroc/core/dist/core.es.js";
With node, rollup, webpack or parcel
import { Core, ALL, ERROR } from "@eroc/core";
With old NodeJs or Browserify
const { Core, ALL, ERROR } = require("@eroc/core/dist/core.umd.cjs");
A module exports start and optionally a stop function.
export { start, stop };
const start = function (emitter) {
return {};
};
const stop = function (instance) {
// instance is what start returned
// this allows to close open files, sockets, etc
};
To start this module in your core file:
import { Core } from "@eroc/core";
import * as exampleModule from "./exampleModule.js";
const core = new Core();
core.start(exampleModule);
Modules can only communicate via messages with other modules with the emitter received when start is called. It garantees that if a module tries to call something that doesn't exists or is broken, it won't break the module itself.
emitter.on(EVENT_NAME, function (data) {
});
emitter.emit(EVENT_NAME, { a: 7 });
To avoid spelling mistakes, import event names from a common file called eventNames.js.
To stop a module use the method core.stop()
.
const exampleId = core.start(exampleModule);
core.stop(exampleId);
When you stop a module, the function stop
will be called, if it exists.
Now, thinking about Twitter, everytime you tweet something, it should appear on your tweet list right? but since our modules don't talk directly to each other, let's use the emitter.
Our tweet
module should notify other modules that something has happened.
export { start };
import { NEW_TWEET } from "./eventNames.js";
const start = function(emitter) {
// For the sake of simplicity, use an interval
setInterval(function() {
emitter.emit(NEW_TWEET, {
author: `Mauricio Soares`,
text: `core is pretty #cool`
});
}, 5 * 1000)
};
Every 5 seconds, this module notifies everything that is listening to NEW_TWEET
that something has happened. If nothing is listening to it, then nothing happens.
Our tweet-list
is going to listen for this notifications.
export { start };
import { NEW_TWEET } from "./eventNames.js";
const start = function (emitter) {
emitter.on(NEW_TWEET, (data) => {
// do something with the data
});
};
Cool right? If one of those modules stop working, then it will not break the other one!
new Core()
Returns a new instance of core.
core.start(module, options)
module
The module as a name-space ( import * as exampleModule from "./exampleModule.js"
)options
optional object
returns a promise that resolves with moduleInstanceId that can later be used to stop the module
const exampleInstanceId = await core.start(exampleModule);
core.stop(moduleInstanceId)
await core.stop(exampleInstanceId);
ALL
Constant to listen to all events
// listen for all events
core.on(ALL, ({ name, data, time }) => {
const timeString = new Date(time).toISOString();
console.debug(`${timeString} event ${String(name)} with data`, data);
});
ERROR
Constant to listen to most errors
// listen for errors
core.on(ERROR, ({ time, phase, error }) => {
const timeString = new Date(time).toISOString();
console.error(`Error during phase ${phase} at ${timeString}`, error);
});
Optional logging to get started
useDefaultLogging(core, logger=console)
import { Core, useDefaultLogging } from "@eroc/core";
const core = new Core();
// listen for all events
useDefaultLogging(core);
Utility to record all events. example
startEventRecorder(core)
returns an eventRecording. Access eventRecording.events
to view all past events.
stopEventRecorder(core, eventRecording);
stops an eventRecording.
import { Core, useDefaultLogging } from "@eroc/core";
const core = new Core();
let eventRecording = startEventRecorder(core);
stopEventRecorder(core, eventRecording);
Helper to replay events.
replayEvents(core, previousEvents, { sameSpeed = false })
Will replay previousEvents on core. previousEvents could come from eventRecording.events
or from a database. Make sure to initialize modules before for it to have any effect. While events are replayed regulare event emits are disabled. This avoids duplicated events in case you emit events as a consequence of another event.
import { Core, replayEvents } from "@eroc/core";
const core = new Core();
// ... initialize modules
const events = // get events
replayEvents(core, events, { sameSpeed: true });
git checkout -b my_branch
git push origin my_branch
You need NodeJS installed on your machine
npm i
npm run bundle
npm t
Core.stopAll
Core.startAll
x
to use
in Sandbox
FAQs
Lightweight framework for scalable applications
The npm package @eroc/core receives a total of 0 weekly downloads. As such, @eroc/core popularity was classified as not popular.
We found that @eroc/core 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.