This is a package created and used by AKASHA to manage geth/web3.js.
The API docs can be found here.
npm install @akashaproject/geth-connector --save
import {gethHelper, GethConnector} from '@akashaproject/geth-connector'
const instance = GethConnector.getInstance(); // get the Singleton Service
/**
* {status}
* [] => synced
* [x] => finding peers
* [x, y] => synchronizing
*/
gethHelper.inSync().then(status => console.log(status))