Socket
Socket
Sign inDemoInstall

templejs

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

templejs

A reactive Mustache view framework.


Version published
Weekly downloads
40
increased by166.67%
Maintainers
2
Weekly downloads
 
Created
Source

Temple

A JavaScript view framework.

  • Reactive - Powered by Trackr, Temple automatically updates the DOM as data changes.
  • Template Driven - Use a Mustache-HTML hybrid syntax to quickly generate UI scaffolding.
  • Modular & Extensible - All views are encapsulated, reusable components.
  • Data Neutral - Temple can be easily integrated with existing frameworks and platforms.
  • Modern - Under the hood, Temple uses new technologies like ES2015 and Web Components, polyfilling where necessary to support older browsers.

Example

Here is a basic template in Temple. This just uses a simple variable, but Temple has support for most of the major Mustache features.

<hello-world>
    <h1>Hello {{ name }}</h1>
</hello-world>
// the above template is rendered
Temple.render(template);

// create an instance from a view name and data
var view = Temple.create("hello-world", { name: "World" });

// render and append to the document body
view.paint("body");

By default, data passed to Temple is not reactive, meaning that re-renders will need to be handled manually. Views can easily be made reactive by using reactive objects, provided by trackr-objects.

// create a reactive object to serve as data
var data = new Temple.Map({ name: "World" })
var view = Temple.create("hello-world", data).paint("body");

// later, change the data and watch the DOM auto-update
data.set("name", "John");

Listening for DOM events is really easy in Temple. Enable the plugin and then add an on-<event> attribute to any element.

<alert-anchor>
    <!-- anchor element with on-click attribute -->
    <a href="#" on-click="alert">Click Me</a>

    <!-- scripts are called when views are initiated -->
    <script>
    // enable the DOM events plugin
    this.use("actions");

    // add the special alert action
    this.addAction("alert", function(e) {
        e.original.preventDefault();
        alert("You clicked me!");
    });
    </script>
</alert-anchor>

Temple uses the new Web Components API to give every view its own custom element. This allows views to be used as reusable modules.

<!-- resuable view -->
<list-item>
    <li>{{ item }}</li>
</list-item>

<!-- main view which uses the above view many times -->
<my-view>
    {{# list }}
    <list-item />
    {{/ list }}
</my-view>

Keywords

FAQs

Package last updated on 30 Nov 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc