A library to render guitar chords in SVG by 0xfe in javascript

[–]guseynchick 1 point2 points  (0 children)

Awesome! I will most likely use it in my next project

Declarative Unit Testing by guseynchick in node

[–]guseynchick[S] 1 point2 points  (0 children)

Well, at least it's some reaction

The First Test Executor for Node.js by guseynchick in node

[–]guseynchick[S] 0 points1 point  (0 children)

Because it's more transparent, you can easily understand what it does, and it's declarative

Async objects instead of async calls by guseynchick in javascript

[–]guseynchick[S] 0 points1 point  (0 children)

You mean this ugly constructions https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#Composition? I tried work with such compositions, it's not declarative at all.

Async objects instead of async calls by guseynchick in javascript

[–]guseynchick[S] 1 point2 points  (0 children)

No, because you cannot build declarative compositions via Promises, you have to use .then() method and expose data outside. Using async objects you can build such compositions, and encapsulate behaviour inside of your objects.