Socket
Socket
Sign inDemoInstall

aurelia-binding-loader

Package Overview
Dependencies
9
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aurelia-binding-loader

An Aurelia loader for using any module directly from a view template.


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
7.12 kB
Created
Weekly downloads
 

Readme

Source

aurelia-binding-loader

Import any module into Aurelia HTML view templates

This loader lets you <require> any module from an Aurelia view template. This makes it easy to load configuration, localization, or theme data that may not be relevant to your view model. It can also be stacked with other loaders.

Installation

First install the loader plugin with jspm.

jspm install npm:aurelia-binding-loader

Then register the plugin with Aurelia.

export function configure(aurelia) {
  aurelia.use
    .standardConfiguration()
    .developmentLogging()
+   .plugin('aurelia-binding-loader');

  aurelia.start().then(() => aurelia.setRoot());
}

Use

Import your modules using the <require> and specify the bind loader. Use the as attribute to choose a binding name for the module's exports.

Basic example

In aurelia-view.html:

<template>
  <require from="theme!bind"></require>

  <div class.one-time="theme.header">header</div>
</template>

In theme.js:

export const theme = {
	header: 'header-class'
};

CSS Modules Example

You can also combine the loader with other loaders. The CSS modules loader processes a CSS file and returns a module with the generated class names. Use the bind loader to make that module available in your Aurelia view.

Install the JSPM CSS Modules loader (here we alias it to the name css-module):

jspm install module=npm:jspm-loader-css-modules

In aurelia-view.html:

<template>
  <require from="styles.css!module!bind" as="styles"></require>

  <div class.one-time="styles.first">First</div>
  <div class.one-time="styles.second">Second</div>
</template>

Note that in the path we specified the module loader followed by the bind loader. bind will process the result of the earlier loader.

In styles.css:

.shared {
  border-width: 5px;
  border-style: solid;
}

.first {
  composes: shared;
  border-color: hotpink;
}

.second {
  composes: shared;
  border-color: cornflowerblue;
}

Keywords

FAQs

Last updated on 23 Mar 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc