GithubHelp home page GithubHelp logo

stunjucks's Introduction

build status

Stunjucks

Stunjucks is a static site pico-framework for Node.js. It uses Nunjucks as it's templateing engine.

You supply the templates and specify the routes and context. Stunjucks builds a static site with a directory structure based on your routes.

Use case

The main use case for Stunjucks is creating static sites that are served directly from a CDN (e.g. GitHub Pages, Amazon S3) or from a traditional webserver (e.g. Nginx, Apache).

Another use case is quick migration of high-traffic urls off of Python frameworks that use similar templating engines, such as the Jinja2 and Django template engines. By making high-traffic, non-dynamic pages (e.g. root hero page, landing pages, FAQs, about us pages) totally static, one can avoid many scalability issues. Since Nunjucks is very similar to Jinja2, and therefore the Django templating framework, migrating the templates to Nunjucks is fairly trivial.

Usage

Command line usage

Installation

npm install -g stunjucks

Example

In mystunjucks.config.js:

module.exports = {
    templateDir: 'templateDir/',
    outputDir: 'static/',
    routes: [
        {
            url: '/landing/deserve/',
            templateName: 'landing.html',
            context: {
                currentYear: new Date().getFullYear(),
                heroCopy: 'The static site framework you deserve!'
            },
        },
        {
            url: '/faq/',
            templateName: 'faq.html'
        },
    ],
    globalContext: {
        companyName: 'NewCo, Inc.'
    }
};

From the directory that contains your config file run: $ stunjucks mystunjucks.config.js

Programmatic usage

Installation

npm install stunjucks

Example
var stunjucks = require('stunjucks');

var stunjucksConfig = {
    templateDir: 'templateDir/',
    outputDir: 'static/',
    routes: [
        {
            url: '/landing/deserve/',
            templateName: 'landing.html',
            context: {
                currentYear: new Date().getFullYear(),
                heroCopy: 'The static site framework you deserve!'
            },
        },
        {
            url: '/faq/',
            templateName: 'faq.html'
        },
    ],
    globalContext: {
        companyName: 'NewCo, Inc.'
    }
};

// Call stunjucks with config
stunjucks(stunjucksConfig);

Testing

npm test

Nginx example configs

The basic example:

server {
    listen 80;
    server_name www.mysite.com;

    location / {
        root /home/username/path/to/project/static/directory/;
        try_files $uri $uri/index.html =404;
    }
}

Alternatively, Nginx can try the url for the static file before defaulting to a webapp (e.g. Flask, Django)

server {
    listen 80;
    server_name www.mysite.com;

    location / {
        root /home/username/path/to/project/static/directory/;
        try_files $uri $uri/index.html @mywebapp;
    }
    location @mywebapp {
        proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://127.0.0.1:8001;
        proxy_read_timeout 300s;
    }
}

stunjucks's People

Contributors

john-s avatar

Stargazers

 avatar  avatar

Watchers

 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.