UNPKG

viraljs

Version:

P2P distributed application made easy

15 lines (11 loc) 205 B
'use strict'; var fs = require('fs'); class App { constructor(){ this.layout = fs.readFileSync('./index.html'); } render(){ return this.layout; } } module.exports = App;