0.2.2 • Published 5 years ago

@kachang/pebble.js v0.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

pebble

pebble is a tiny component-based Javascript frontend framework, similar to React. It's built completely from scratch, and aims to remain lightweight and clean.

Here's a quick example.

pebble sports a React-like API:

class Counter extends Pebble.Component {
    constructor(props) {
        super(props);

        this.state = {
            value: 0
        };

        this.handleClick = this.handleClick.bind(this);
    }

    handleClick(event) {
        if (event.target.name === 'increment') {
            this.setState({
                value: this.state.value + 1
            })
        } else if (event.target.name === 'decrement') {
            this.setState({
                value: this.state.value - 1
            })
        }
    }

    render() {
        return (
            <div>
                Pebble Counter #{ this.props.number }
                <br/>
                <button name={ 'decrement' } onClick={ this.handleClick }>
                    -
                </button>
                { ` ${this.state.value} ` }
                <button name={ 'increment' } onClick={ this.handleClick }>
                    +
                </button>
            </div>
        )
    }
}

App = () => <div>
    <Counter number={ 1 }/>
    <Counter number={ 2 }/>
    <Counter number={ 3 }/>
</div>;

Pebble.mount(document.body, <App/>);

You can install pebble from npm or yarn:

npm i @kachang/pebble.js
or
yarn add @kachang/pebble.js

Thanks to ofirdagan for helping me get the basic structure of React.

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago