json2frontend

1.1.0 • Public • Published

json2frontend

Transform JSON to front-end code (html, bootstrap, bulma, uikit, skeleton, e.g.)

Installation

Install my-project with npm

  npm install json2frontend

Usage/Examples

Nodejs example

const Json2frontend = require("../lib/json2frontend.js");

function test(moduleName) {
  console.log("==> Testing module [" + moduleName + "]");

  page = new Json2code({ useCDN: true, module: moduleName });
  console.log(page.title({ data: "Title!" }));
  console.log(page.subTitle({ data: "Sub-title!" }));
  console.log(page.bold({ data: "Hello world!" }));
  console.log();
}

test("html");
test("bootstrap");
test("bulma");
test("uikit");

Nodejs server example

const express = require("express");
const json2frontend = require("json2frontend");
const app = express();
const page = new json2frontend({
  useCDN: true,
  module: "bootstrap",
  version: "last",
});

app.get("/", function (req, res) {
  page.top({ title: "Page title" });
  page.begin();
  page.title({ data: "Page title" });
  page.subTitle({ data: "Page sub-title" });
  page.filter({ data: "Page sub-title" });
  page.text({
    data: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
  });
  page.bold({ data: "bold text " });
  page.italic({ data: "italic text " });
  page.underline({ data: "underline text " });
  page.end();
  page.bottom();
  res.send(page.output);
});

app.listen(3000, "0.0.0.0", function () {
  console.log("Started!");
});

API Reference

top

Output required code like and

tags. Usage:
top({ useCDN: [true / false], module: [moduleName] });
Parameter Type Description
useCDN boolean Use CDN or output JS code directly
module string Main module for code output

Modules:

Module Usage for URL
html web Flat HTML
skeleton web Website
bootstrap web Website
bulma web Website
uikit web Website

begin

Output required code for... Usage:

begin();

end

Output required code for... Usage:

end();

Authors

License

Apache

Package Sidebar

Install

npm i json2frontend

Weekly Downloads

1

Version

1.1.0

License

Apache-2.0

Unpacked Size

40.6 kB

Total Files

15

Last publish

Collaborators

  • giulianonascimento