
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Packaged YM-modules
It's a CommonJS module-assistant for creating plugin-based apps.
Provides API for loading packages (plugins as npm-modules).
Supports asynchronous define, require, provide (inherited from ym).
Made for simplifying plugin-based apps building.
Why it's not based on CommonJS? Because ym is more elegant.
Пакет предоставляет класс App, от которого можно наследовать класс вашего приложения; а так же статический метод create.
var pym = require('pym');
var util = require('util');
util.inherits(myApp, pym);
function myApp(opts) {
pym.call(this, opts);
// your custom application
}
var app = new myApp();
var app = require('pym').create({ /* options */ });
Waits for:
var app = require('pym').create({ /* options */ });
app.usePackage('some-npm-package');
app.require('module', function (module) {
// your app
module.doSomething();
});
pym has a wrapper to load modules built with Architect plugin interface.
It means you can easily use packages (plugins) made for Architect platform in pym infrastructure. Architect services will be resolved as ym-modules.
Differences from Architect:
loadConfig method — and no frozen config format, use any config you like;FAQs
Module-assistant to create systems based on plugins
We found that pym 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.