Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aurumjs

Package Overview
Dependencies
Maintainers
1
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurumjs - npm Package Compare versions

Comparing version 0.3.21 to 0.3.22

2

package.json
{
"name": "aurumjs",
"version": "0.3.21",
"version": "0.3.22",
"description": "Fast and concise declarative DOM rendering library for javascript",

@@ -5,0 +5,0 @@ "main": "dist/aurum.js",

@@ -11,13 +11,26 @@ <p align="center">

## What is Aurum
Aurumjs is a DOM rendering library inspired by react and angular.
In Aurum you define your DOM using JSX and each thing that can change, be it attributes or inner text can be assigned to a data source.
There is no rerendering, no reconciliation, no watching no dirty checking and no guesswork on what will and will cause things to render.
In Aurum you use stream based programing (Similar to rx.js) for data management. You link your streams directly to the DOM be it into attributes, inner text or inner html, you keep your UI up to date all through streams.
Components in aurum never "rerender" react style, there is no reconciliation, no watching no dirty checking and no guesswork on what will and will cause things to render because all DOM changes are directly tied to a data stream.
Instead all the things that can change are bound to a so called data source which makes data mutations
observable and then applies the changes directly to the DOM bypassing any need for virtual dom or heavy computations of any sort.
This makes it very fast to apply updates while keeping the code short.
## Why use Aurum
* Aurum encourages writing UIs in a way that makes them update faster in response to data changes than even in popular modern libraries like react, vue or angular
This project is and will always be dependency free for better security and performance
This project is still under development but feel free to try it and make bug reports or suggestions.
* Aurum does most of the data management overhead for you, saving time and allowing to focus on what matters: Implementing your business logic
* Aurum.js has very few concepts and a small API, you can get a full understanding of Aurum.js in record time.
## Browser support
* All chromium based browsers
* Edge
* Firefox
* Safari
* IE11 (requires several polyfills and your code bundler needs to downlevel the code to ES5 but it works)
## Getting started

@@ -69,6 +82,8 @@

## Website with documentation and further explanations
https://aurumjs.org/
## Live example
TODO App with creation, deletion drag and drop, editing and marking as done of tasks all under 100 lines of code with aurum:
https://codepen.io/cyberphoenix90/pen/LYYMwVr
For documentation and quickstart guides check out Aurums homepage (which is fully written in aurum and open source):
https://aurumjs.org/
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc