0.2.0 • Published 7 years ago

ss-pug v0.2.0

Weekly downloads
8
License
-
Repository
github
Last release
7 years ago

Pug (HTML) wrapper for SocketStream 0.3

Allows you to use Pug files (.jade) in your SocketStream project.

Instructions

Add ss-pug to your application's package.json file and then add this line to app.js:

ss.client.formatters.add(require('ss-pug'));

Passing local variables

Some 3rd-party authentication libraries will want to inject HTML into your views. You may easily pass through local variables as so:

ss.client.formatters.add(require('ss-pug'), {locals: {myvar: 'myvalue'}});