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

ikki

v0.2.0

Published

The extention toolkit for Riot.js

Downloads

19

Readme

ikki

An extention toolkit for Riot.js.

Features

  • passing promises/generators to the components instead of simple values
  • routing inside the html w/o JavaScript
  • simple controller class (not yet)

Getting started

To use ikki, Riot v2.1.0 or above is needed.

1) Install Riot and ikki

Use script tag:

<script src="//cdn.jsdelivr.net/riot/2.0/riot.js"></script>
<script src="dist/ikki.min.js"></script>

or, via Browserify:

$ npm install --save ikki
var riot = require('riot')
require('ikki')

2) Introduce mixin to your tag

<my-tag>
  <p>{ opts.message || 'Well...' }</p>
  <footer>{ opts.desc || 'Loading...' }</footer>
  <script>
    this.mixin('ikki') // THIS LINE IS NEEDED TO USE IKKI'S FEATURES
  </script>
</my-tag>

Guide

opts attribute

ikki provides opts attribute to the component via mixin. It makes possible to:

  • Pass objects to the component
  • Pass promise to the component
  • Pass generators to the component

Without ikki we used to write like this:

<my-tag message="Hi!" />

With ikki we can write this:

<my-tag opts={ object } />
<script>
  this.object = { message: 'Hi!' }
</script>

Also it's OK to pass the promise.

<my-tag opts={ promise } />
<script>
  this.promise = new Promise(function(resolve, reject) {
    setTimeout(function() {
      resolve({ message: 'Hello!' })
    }, 10000)
  })
</script>

And genrators, too. Now that, we can separate views and controllers easily.

<my-tag opts={ generator } />
<script>
  this.generator = function*() { while (true) {
    yield new Promise(function(resolve, reject) {
      setTimeout(function() {
        resolve({ message: hello() })
      }, 1000)
    })
  }}
</script>

HTML router

The easiest way to write the routing of your Riot applications. No need to write JavaScript.

Patterns

<router>
  <route path="/"><my-tag message="hello world" /></route>
  <route path="lorem"><my-tag message="Lorem Ipsum is..." /></route>
  <route path="member/:person"><my-tag message="$person" /></route>
  <route path="*"><my-tag message="not found." /></route>
</router>
  • /: slash(/) matchs url without hash
  • abc: matchs exact 'abc'
  • aaa/bbb/ccc: matchs exact 'aaa/bbb/ccc'
  • aaa/:xxx: matchs anything starting with 'aaa/' and you can get the value of :xxx by $xxx
  • *: matchs any url

Redirects

<route path="old/url" redirect="new/url" />
<route path="google" redirect="https://www.google.com" />
  • If redirect attribute is set, url will change to it
  • CAUTION: don't make the infinite loop of redirect

Queries and parameters

routing | actual | queries | parameters | how to get :--- | :--- | :--- | :--- | :-- user/:id | http://localhost/#user/111 | {} | { id: 'tom' } | $tom search | http://localhost/#search?word=ikki | { word: 'ikki' } | {} | ?word

Generator helpers

ikki has several built-in helpers to create generators.

1) Edo

The edo is the generator based flow-controler. This method creates a new generator which can be passed to the components. If you need serial/branching interactions with user's input, this will be a perfect solution.

Syntax
edo(listeners, generator)
  • listeners: space-sparated listeners' name in String
  • generator: routing information is passed via arguments: path, query, param. See details on "HTML router" section. With yield you can push the data to the component.
Examples

This is a simple conversation-like example. yield returns the value given by the triggered event. Of cause, you can use if, while, ...etc as you like.

<app>
  <my-dialog opts={ gen } />
  <script>
    var edo = require('ikki/lib/edo')
    this.gen = edo('click', function*(path, query, param) {
      yield { message: 'Good morning!', btns: ['Next'] }
      let fruit = yield { message: 'Which do you like?', btns: ['apple', 'banana'] }
      yield { message: "OK, I'll give you this " + fruit + '.', btns: ['Thanks'] }
      yield { message: 'See you!', btns: [] }
    })
  </script>
</app>

License

MIT