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

ts-transform-reactive

v0.0.4

Published

Transforms reactive TypeScript

Downloads

24

Readme

ts-transform-reactive

This TypeScript transformer provides "reactive" transforms of TypeScript code. Reactive code is defined with a @reactive decorator, and the code classes, properties, expressions, and functions that are marked as reactive will be transformed to code with classes and properties that can observed and lazily evaluated, and expressions than yield new input-varying values as well. This relies on alkali for variable operations that produce reactively bound variables.

Installation

$ npm install ts-transform-reactive

And then put this in your list of before transformers when you compile TS. If you are using webpack/ts-loader, this is a simple addition to your ts-loader config:

// webpack.config.js:
const reactiveTransformer = require('ts-transform-reactive').default
...
// exports.module.rules[]
    {
      test: /\.ts$/,
      loader: 'ts-loader',
      options: {
          getCustomTransformers: () => ({
              before: [reactiveTransformer()]
          }),
          transpileOnly: true
      }
    }

Usage

Reactive expressions are defined by importing reactive and marking expressions with a @reactive:

import { reactive } from 'alkali'

@reactive
class Person {
  name: string
  age: number
}

This class is now defined reactively. In this case it is an alkali variable, with defined properties:

let p = new Person()
p.name -> a reactive variable that can be bound to elements

We can also define reactive expressions:

let someone = new Person({ name: 'Kris', age: 40})
@reactive
let birthYear = 2017 - someone.age
birthYear.valueOf() -> 1977
someone.age = 45
birthYear.valueOf() -> 1972

Function and method calls can be written in reactive expressions as well. These calls will be performed lazily/on-demand, and reexecuted as needed. The target function will be called with the values of the variables (not the variables themselves). For example:

@reactive
let smallest = Math.min(a, b)
// smallest will be a reactive variable, computed from inputs a and b

When using the alkali reactive, to create these variables, they can be bound to DOM elements using alkali constructors or any other alkali target.

import { reactive, Div, Span, Input } from 'alkali'

@reactive
let a = 1, b = 2, sum = a + b
// create a div with its text bound to the sum
parent.appendChild(
  new Div([
    Input(a), // each input bound to the variable
    Input(b),
    Span(sum)])) // will reactively compute sum

And the reactive expressions maintain operator relationships, so alkali's reversible data flow is supported as well:

@reactive
let a = 2,
  doubleA = react(a * 2)
@reactive
doubleA = 10 // will flow back through the expression
a.valueOf() -> 5