Giter Club home page Giter Club logo

alloy.js's Introduction

alloy.js

A javascript library to dynamic binding.

UNDER CONSTRUCTION

Getting started

One-way data binding

The goal of this feature is allow you to inject data in your html using {{expression}}.

Example:

<html>
	<body data-al-init>
		<script src="https://github.com/Diullei/alloy.js/raw/master/alloy-0.1.0.min.js"></script>

		<div>Hello {{dataValue}}!</div>

		<script type="text/javascript">
			var dataValue;
			var today = new Date();
			dataValue = 'world ${today.getFullYear()}-${today.getMonth()}-${today.getDay()}';
		</script>
	</body>
</html>

See on jsfiddler

The template expression above is a one-way data binding. It sets up automatic monitoring of the data, and ensures that the html stays up-to-date when the data’s value changes.

Another example:

<html>
	<body data-al-init>
		<script src="https://github.com/Diullei/alloy.js/raw/master/alloy-0.1.0.min.js"></script>

		<div>Hello counter: {{count}}</div>

		<script type="text/javascript">
			count = 0;
			window.setInterval(function(){
				count++;
			}, 1000);
		</script>
	</body>
</html>

See on jsfiddler

Two-way data binding

Two-way data binding lets us define that we want a DOM element’s value (typically an input box or a check box) to be kept in sync with the value of an object. Example:

<html>
	<body data-al-init>
		<script src="https://github.com/Diullei/alloy.js/raw/master/alloy-0.1.0.min.js"></script>

		<div>
			Input:
			<input type="text" data-al-bind="str" placeholder="type something here">
			<div> Value: {{str}}</div>
		</div>

		<script type="text/javascript">
			str = '';
		</script>
	</body>
</html>

See on jsfiddler

Under construction

This library is under construction yet. I hope to release a stable version soon.

alloy.js's People

Contributors

diullei avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.