
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
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.
temple-backbone
Advanced tools
Adds Backbone specific handlers to Temple.
Download the latest version dist/
folder and use via a script tag. The Backbone source is not included with this plugin, so it must be made available externally. Backbone depends on Underscore and, optionally, jQuery, so those should be included as well.
<script type="text/javascript" src="underscore.js"></script>
<script type="text/javascript" src="backbone.js"></script>
<script type="text/javascript" src="temple.js"></script>
<script type="text/javascript" src="temple.backbone.js"></script>
If using Browserify or Node.js, you can install via NPM and use via require("temple-backbone")
.
$ npm install temple-backbone
To use this plugin, call .use("backbone")
on a Temple view. This will enable Backbone models and collections as a compatible data type.
view.use("backbone");
view.set(new Backbone.Model({ foo: "bar" }));
view.get("foo"); // "bar"
By default, Models are non-reactive, meaning that the view will not update as data changes. To enable, you can install and manage Dependency
instances yourself, or use the built in trackModel()
and trackCollection()
methods.
var model = new Backbone.Model({ foo: "bar" });
Temple.Backbone.trackModel(model);
view.set(model);
FAQs
Adds Backbone specific handlers to Temple Mustache.
The npm package temple-backbone receives a total of 0 weekly downloads. As such, temple-backbone popularity was classified as not popular.
We found that temple-backbone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
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.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.