npm install highland-pagination
``CoffeeScript
HighlandPagination = require "highland-pagination"
action = (page = null) ->
getPage(page).then (items) ->
{ items, nextToken }
aHighlandStream = new HighlandPagination(action).stream()
``