Use Node modules inside addon-sdk - is possible?

Is it possible add libraries or node modules for connection to my remote redis-server - and store data, subcribe on channel, or listen amqp queue - If yes - please, any examples - how include it in addon for using; i look about Low-level api loader documentation, but i`m not sure that understand it

This should be what JPM is for.

Node modules generally won’t work, since they are designed to run in a server context and not a local add-on context.

Most of the modules with the “jetpack” keyword on NPM were designed to be used with the SDK and will work. All you do to use them is install them with npm into the local directory of your extension and make sure jpm isn’t ignoring them and you’re done.