0.2.5 • Published 4 years ago

@isotope/core v0.2.5

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

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

Isotope is a simple and intuitive pure JS library for building User Interfaces (UIs) for modern browsers.

Why Isotope?

  • Developer-friendly - Isotope API is designed with simplicity in mind, so that you can jump right into making your first app. ❤
  • JavaScript-focused - Isotope is laser-focused on JavaScript, requiring no additional tooling to get you up & running.
  • TypeScript-ready - Isotope is written in TypeScript, enabling autocompletion and other useful features in modern editors.
  • Lightweight - Isotope is modular, but even when fully-loaded, it weights only 10.2KB, or 3.4KB with GZip! 📦
  • Fast - With its small size and memory efficiency, Isotope provides performance unrivaled by many. ⚡

Installation

npm install @isotope/core

Usage

import { createDOMView } from "@isotope/core";

const why = [
	"Developer-friendly",
	"JavaScript-focused",
	"TypeScript-ready",
	"Lightweight",
	"Fast"
];
const view = createDOMView(document.getElementById("app"));

view.ul().map(why, (text, parent) => {
	parent.li(text);
});

Interested?

Get started by checking out the docs.

Questions?

Have a question or want to chat about Isotope? If so, check out the Discord community!

Support Isotope

Help make Isotope better by contributing code or fixes, or donating:

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2-2

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago