0

I want to use FRP in my project. For node.js I found just one most popular lib, which realize FRP. It's bacon.js. But I don't found exampes of using bacon.js in node.js in native JS (not coffeeScript, not Closure). How can I use backon.js in native js in node.js? Or somebody knows a good manual?

Michael Skvortsov
  • 191
  • 1
  • 3
  • 8
  • 1
    Since coffeescript compiles to js, the api is the same and you can use it in the same way - just with different syntax. – Bergi Apr 21 '14 at 12:29

2 Answers2

3

The Bacon.js Tutorial Series has Javascript examples. See links on the Bacon.js wiki: https://github.com/baconjs/bacon.js/wiki/Documentation

raimohanska
  • 3,265
  • 17
  • 28
2

Baconjs has generated pure js library: https://github.com/baconjs/bacon.js/tree/master/dist
For examples check this example application - todoApp.

Ruslan Ismagilov
  • 1,360
  • 7
  • 14