-

Full-text search in Node JS (search related data)
If you are building a website, e-commerce, a blog, etc., you will need a full-text search to find related content like Google does for every web page. This is an already known problem so probably you don’t want to implement your own solution. One option is to use the flexsearch module for Node js. So Read more
-

How to use a GitHub repository as a dependency in Node.js
Sometimes you need a dependency that is not published as a regular package at npmjs.com. Probably is the case of a private package. Node.js allows remote dependencies such as GitHub private repository, so let explain how to do that. Read more
-

Bye bye FindBugs. Hello SpotBugs
I used to use FindBugs plugin in my Java projects to detect and learn about issues and potential issues in my source code. Even FindBugs is no longer maintained we have an alternative called SpotBugs. It requires Maven version 3.1.1 to be executed Is not so different to use, just add the plugin like any Read more
-

Migrate $User, $Profile, $Label and $Api to Lightning Components
We can’t use $User in Lightning. We need to implement a server-side solution.View post to subscribe to site newsletter. Read more
-

How to convert sforce.apex.execute to Lightning
The idea is to convert a Salesforce Javascript button to Lightning Experience Read more
