
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.
@alotool/shortcode
Advanced tools
shortcode accepts 2 arguments: an element, and an object of tags to match.
Each tag method returns a string to replace the original tag (in the DOM) and accepts an (optional) asynchronous callback. this is bound to the match object.
/* Replaces [hello text="Hello world"] in `body` with "Hello world" */
new Shortcode(document.querySelector('body'), {
hello: function() {
return this.options.text;
}
});
Tip: Because shortcode replaces an element's html, you will lose existing event bindings inside that element. Use delegated bindings where possible and call shortcode at the start of your code.
pre and codeShortcode.js should work in any browser that supports Function.prototype.bind (Sorry IE7 & 8). If you need to support <IE9, try the polyfill published in MDN.
Sometimes you need to do asynchronous work. Don't return anything from the shortcode method. Instead, call done with your return value to update the DOM.
new Shortcode(document.querySelector('body'), {
hello: function(done) {
var self = this;
/* setTimeout is used here to simulate an async event */
setTimeout(function() {
done(self.options.text);
}, 1000);
}
});
Shortcode.js supports tags like [note]This is a note[/note]. The content between tags will be availble in your callback under this.contents.
new Shortcode(document.querySelector('body'), {
note: function(done) {
return this.contents;
}
});
While shortcode.js doesn't rely on jQuery, you may find it convenient to use. Shortcode can accept a jQuery object or a DOM object as the first argument.
Alternatively, a jQuery plugin wrapper is supplied.
$('body').shortcode({
hello: function() {
return this.options.text;
}
});
npm login
npm publish --access public
npm unpublish <package-name>@<version>
npm unpublish <package-name> -f
FAQs
Replace wordpress-style shortcode strings with anything
We found that @alotool/shortcode 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.