js-real-world-functional-programming icon indicating copy to clipboard operation
js-real-world-functional-programming copied to clipboard

Tips and guidelines for real world functional code-bases in JS

Results 2 js-real-world-functional-programming issues
Sort by recently updated
recently updated
newest added

It is not developed anymore and the official repo itself recommends other alternatives instead of using it.

In [user.js](https://github.com/haskellcamargo/js-real-world-functional-programming#do-5) example: ```javascript const listUsers = () => User.find().asArray() ``` The `listUsers` method is using an external reference. Where `User` come from? Is it not a good practice to...