DataBindings

Description

A small Vue.js-inspired reactive data bindings framework for Pharo.

Details

Source
GitHub
Dialect
pharo (25% confidence)
Forks
1
Created
Nov. 29, 2018
Updated
Feb. 8, 2019

README excerpt

# DataBindings
A small Vue.js-inspired reactive data bindings framework for Pharo.

# Load it on your image

```smalltalk
Metacello new
	baseline: 'DataBindings';
	repository: 'github://dorellang/DataBindings/src';
	load.
```

# Including it in your project baseline

```smalltalk
baseline: spec
  "add the baseline to your spec"
   spec baseline: 'DataBindings' with: [
      spec repository: 'github://dorellang/DataBindings/src'
   ].
   
   "then declare it as a dependency"
   spec package: 'YourPackage' with: [
      spec requires: #( "etc..." 'DataBindings' "etc...")
   ]
```
← Back to results