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

@amoutonbrady/baracuda

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@amoutonbrady/baracuda

An alternative to JSX to work with HyperScript view layer

  • 1.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by700%
Maintainers
1
Weekly downloads
 
Created
Source

codecov

Baracuda

A tiny (400B), modern and fast utility around hyperscript like view layer

Why?

Mostly code readability and DX. h1('Hello world') is easier to understand (for me that is) than h('h1', {}, 'Hello world'). It comes in handy when you have nested childrens.

ul([li('First item'), li('Second item')]);

There was other options but they seemed a little on the heavy side. I wanted something modern and slick.

How?

Proxy.

Installation

npm install @amoutonbrady/baracuda
or
yarn add @amoutonbrady/baracuda

Usage

Import the baracuda factory function and wrap it around an hyperscript like function.

According to tests, baracuda should be at least compatible with the following frameworks:

  • Vue 3: import { h } from 'vue'
  • Hyperapp: import { h } from 'hyperapp'
  • Preact: import { h } from 'preact'
  • Inferno: import { h } from 'inferno-hyperscript'
  • Redom: import { el } from 'redom'

You can find more example in the tests directory

The hyperscript like function has to take 3 arguments :

h(tag: string, attributes: Object, childrens: string | Element | Element[])

The return object from baracuda is a Proxy that can be destructed into functions with the following interface:

fn(attributes: Object, childrens: string | Element | Element[]): Element
fn(childrens: string | Element | Element[]): Element

Where:

  • fn is the name of the tag (eg: div, h1, etc.)
  • attributes is an object containing dom attributes (eg: classes, event handler, etc.)
  • childrens is either a string or an array of Element

⚠️ If the first argument is not an object, it will be interpreted as the childrens argument and defaulting the attributes to {}

Example

note: the library exports a default function as well as a named function

Quick example
import { h, render } from 'my-dom-library';
import { baracuda } from '@amoutonbrady/baracuda';
// import hh from '@amoutonbrady/baracuda'; <= That also works

const { ul, li } = baracuda(h);

const app = ul([
    li(1),
    li(2),
]);

render(app, document.body);
Live example

Limitations

This utility is based on an non polyfillable feature: Proxy. This can't be used in a non evergreen browser.

See MDN for the full compatibility list. I only use the handler.get feature.

Mithril is only partially compatible for the moment.

Contributing

git clone https://github.com/amoutonbrady/baracuda

cd baracuda

yarn install

yarn build

yarn test

Roadmap

  • Typescript support Better Typescript support
  • Add helpers, like classes, id
  • More tests

Aknowledgment

  • This issue started it all
  • Hyperapp which is the framework I had in mind while prototyping this

FAQs

Package last updated on 25 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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