@isotope/server
Version:
Server-Side Rendering package for Isotope
24 lines (14 loc) • 981 B
Markdown
# Isotope Server-Side Rendering
[](https://www.npmjs.com/package/@isotope/server) [](https://www.npmjs.com/package/@isotope/server) [](https://bundlephobia.com/result?p=@isotope/server) [](https://discord.gg/FaFbaSk)
This package contain code for Isotope's SSR renderer implementation ([`@isotope/server`](https://www.npmjs.com/package/@isotope/server)). For more details about its usage, check out [the docs](https://areknawo.com/isotope#docs>ssr).
## Installation
```bash
npm install @isotope/server
```
## Usage
```javascript
import { createStringView } from "@isotope/server";
const view = createStringView("body");
view.div();
const str = `${view}`; // <body><div></div></body>
```