bem-contrib / bem-proxy

:shit: Pure proxy server to render bemjson with bemhtml onto plain html and so on (BEM)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bem-proxy

Pure proxy server to render bemjson with bemhtml onto plain html and so on (BEM).

Build Status

Installation

npm install
npm test

Usage

const http = require('http');

const BemProxy = require('bem-proxy');

const app = BemProxy({
    templates: require('./common.bemhtml.js'),
    target: 'http://127.0.0.1:8087',
    listen: '3333'
});

app.on('listen', address => {
    console.log('Proxy server listening on ' + (address.port ? 'port ' + address.port : address));

License

MIT

About

:shit: Pure proxy server to render bemjson with bemhtml onto plain html and so on (BEM)

License:MIT License


Languages

Language:JavaScript 100.0%