Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Latest commit

 

History

History

server

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>