Code Monkey home page Code Monkey logo

infuse.host's Introduction

Infuse.host allows you to infuse HTML templates with dynamic content. The resulting infused HTML fragments can then be added to host elements. This is done by writing template literals or expressions in your HTML templates. It also allows you to:

  • Write event handlers, the same way you would normally write them (using on-event attributes), but with access to the host and other variables.
  • Write watches to automatically re-infuse an element when an event occurs on another element.
  • Write iterating templates to infuse a template iteratively, based on values in a given iterable variable.

Installation

npm install infuse.host

Example

A working version of the following "Hello world" example can be found here.

<!DOCTYPE html>
<html>
<head>
	<title>Basic infuse.host example</title>
</head>
<body>
	<template>
		<h1>${ data.title }</h1>
	</template>
	<header></header>

	<script type="module">
		// Import the infuse and parser modules.
		import infuse from 'https://infuse.host/src/infuse.js';
		import parseTemplate from 'https://infuse.host/src/parseTemplate.js';

		// Find the <header> element (which will be used as `host`) and the <template> element.
		const host = document.querySelector('header');
		const template = document.querySelector('template');

		// Parse the template.
		parseTemplate(template);

		// Data to infuse.
		const data = { title: 'Hello World' };

		// Clone and infuse the template.
		const fragment = infuse(host, template, data);

		// Add the resulting infused `fragment` to the <header> (the `host`).
		host.appendChild(fragment);
	</script>
</body>
</html>

Documentation

For documentation and examples visit https://infuse.host/.

Webpack

infuse-loader is a webpack loader that allows you to parse HTML templates and use infuse.host in webpack projects.

License

MIT.

infuse.host's People

Contributors

serg-io avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  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.