You can import the lib with as CommonJS modules as a global JS script.

CommonJS

  $ npm install react-utils-helper@0.1.3
  $ npm install react-utils-helper
                    
  var RU = require('react-utils-helper/lib');
                    

You have to include a mixin for two way data binding between state and view.

CommonJS

  var FormMixin = RU.FormMixin;
  mixins: [FormMixin],
  //or
  mixins:[RU.FormMixin],