0.1.3 • Published 4 years ago

@isotope/prototope-server v0.1.3

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Prototope Server-Side Rendering

npm (scoped) npm npm bundle size (scoped) Discord

This package contain code for Prototope's SSR renderer implementation (@isotope/prototope-server). For more details about its usage, check out the docs.

Installation

npm install @isotope/prototope-server

Usage

import { bgColor, h, m, w } from "@isotope/prototope";
import { PrototopeServer } from "@isotope/prototope-server";
import { createStringView } from "@isotope/server";

const view = createStringView("body");
const { node, getCSS } = view.$(PrototopeServer());

node.div([bgColor("primary"), h(8), m(2), w(8)]);

const css = getCSS(); //
const str = `${view}`; // <body><div><div class=""></div></div></body>