0.1.2 • Published 4 years ago

@isotope/server v0.1.2

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

Isotope Server-Side Rendering

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

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

Installation

npm install @isotope/server

Usage

import { createStringView } from "@isotope/server";

const view = createStringView("body");

view.div();

const str = `${view}`; // <body><div></div></body>