Socket
Socket
Sign inDemoInstall

infuse.host

Package Overview
Dependencies
1
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    infuse.host

Infuse your HTML with dynamic content.


Version published
Weekly downloads
5
increased by150%
Maintainers
1
Install size
910 kB
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 25 Feb 2019

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