Skip to content

A simple HTTP server for pruno. Especially useful for prototyping or building static sites.

Notifications You must be signed in to change notification settings

cdebotton/pruno-http

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pruno-http

A simple HTTP server for pruno. Especially useful for prototyping or building static sites.

Usage

"use strict";

var pruno = require('pruno');

pruno.plugins(function(mix) {
  mix
    .configure({ dir: __dirname + '/config' })
    .http({
      listen: 3000,
      env: 'development',
      dist: './dist',
      file: './server.js' // If you want to use your own simple http server.
    });
});

About

A simple HTTP server for pruno. Especially useful for prototyping or building static sites.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published