New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nunjucks-html-loader

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nunjucks-html-loader

A webpack loader that takes nunjucks templates and returns raw html. It also works with webpack's watch command

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
96
decreased by-23.2%
Maintainers
2
Weekly downloads
 
Created
Source

Nunjucks (Webpack) HTML Loader

The original 'nunjucks-loader' takes nunjucks templates and turns them into javascript. I wanted to take nunjucks templates and turn them into pre-compiled static html files.

NPM version Github license Github stars

Usage

This is a very simple webpack loader for nunjucks files. It performs the following opteration:

some-template.nunj -> html string

When you mix it with the file-loader you can take it one step further!

some-template.nunj -> html string -> some-file.html

Add your personal variation to the below loader configuration to your webpack config and you should be good to go.

{
    test: /\.nunj$/,
    loader: 'file?context=' + precompiledContext + '&name=[path][name].html!nunjucks-html?' +
    	JSON.stringify({
    		'searchPaths': [
				'/path/to/sources',
				'/path/to/more/sources'
			]
    	})
}

See it in action with the Epicenter project

This is a small piece on a much larger vision to use webpack for more than compiling javascript. See how I'm using it to precompile a static site:

https://github.com/ryanhornberger/node-epicenter

https://www.npmjs.com/package/epicenter

Keywords

FAQs

Package last updated on 12 Jan 2017

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