npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

orbiton

v1.2.44

Published

The Ultimate Javascript library for building Browser User Interfaces.

Downloads

40

Readme

License: MIT Npm package total downloads version Sponsor On Patreon

A Javascript library for building Browser User Interfaces. Orbiton JS is a component based Javascript rendering Engine for creating User Interfaces in the browser.

Why use Orbiton

Make your choice to use Orbiton based off facts.

  • Light Weight: One of the greatest advantage of Orbiton is that its lightweight. Orbiton is just 3.5kb min+gzip, This assures you that your app has fast page loads since most of the chunk is from just your own code.
  • Close To Dom: This is another advantage of Orbiton. Being close to the DOM means that the library will not have to carry out many functions in order to update the Dom making the app feel fast for the user.
  • Reactive: The library is reactive making you create modern web apps that provide a native feel to the user. This makes it even better for creating Progressive web apps.
  • Rust Renderer: Orbiton JS has a new experimantal Rust Render that compiles to wasm. Rust is known for its perfomance hence makin Orbiton Applications run at maximun performance.

Installation

Installing Orbiton is Quite simple. You can use Orbiton to build full Single page Application or just small parts of your website.

Using CDN

You can add Orbiton to your website using an Javascript CDN you prefer

<script crossorigin src="https://unpkg.com/orbiton@latest/umd/orbiton.production.js"></script>

Using Node JS

If you are using Node to build a your web app run this in the command line

# yarn
yarn add orbiton

# npm
npm install orbiton

Deno

Orbiton also supports development in deno.


import Orbiton from "https://cdn.jsdeliver.net/npm/orbiton/esm/orbitonjs.development.js"

Usage

Using Orbiton is easy. All you have to do is import Orbiton and use JSX to create your app. Visit the Orbiton JS documentation here to Learn how to build Apps in Orbiton JS.

import Orbiton from 'orbiton'
const App = (
  <div>
    <h1>Hello World</h1>
  <div>
)

Orbiton.append(App, document.getElementById('root'))

Here are some important links that you might find usefull if you are gettig started with Orbiton JS.

Contributing

Anybody willing to contribute to the development of this library can help by contibuting to the repository on Github.

Some Important links for Contributors.


License

MIT License