The JavaScript SDK allows developers to integrate the FeedHenry Cloud into any web-based solution - desktop websites, mobile websites or a stand-alone JavaScript client.
The API is provided in the $fh namespace and uses a common convention for most functions, which takes the format:
$fh.doSomething(parameterObject, successFunction, failureFunction)
Where parameterObject is an ordinary JavaScript object. The successFunction callback is called if the operation was successful and the failureFunction callback is called if the operation fails. All of these arguments are optional. If there is only one function, it is taken as the success function.
The successFunction callback is called with one argument, a result object, which is again an ordinary JavaScript object. The failureFunction callback is called with two arguments: an error code string, and an object containing additional error properties (if any).
Detailed documentation for the JavaScript SDK's API can be found here: http://docs.feedhenry.com/v3/api/app_api
The JS SDK is now built using Browserify.
Because of Browserify, you can write any new functions as normal node modules, and use node's "require" to load any other modules, or to be consumed by other modules.
Write your tests in test/tests directory. Add the tests to test/browser/suite.js file and run
grunt test
This will use mocha and phatomjs to run the tests.
In fact, if your module and test don't require a browser environment, you can just run them purely in node. (You may need to add a new grunt task to run them).
To help debugging, you can run
grunt local
This will start mock servers locally and you can go to http://localhost:8200/example/index.html page to debug. You may want to run
grunt watch
In another terminal window to auto generate the combined js sdk file.
For browser compatibility testing, we use Testling. The project page is here: https://ci.testling.com/feedhenry/fh-js-sdk.
You can also run testling locally:
npm install -g testling
testling
If testling can not find any browser locally, you either need to add browser paths to your PATH environment variable, or use
testling -u
and copy the url to a browser.
When finish developing and testing, run
grunt
To generate the release builds.
This process should be changed, however, documenting it here.
Build the js-sdk as above. clone the AppForms-Template repo
git clone [email protected]:feedhenry/AppForms-Template.git
switch to the feedhenry3 branch
git checkout feedhenry3
copy the appForms-backbone file generated in the js-sdk to the AppForms-Template
cp fh-js-sdk/dist/appForms-backbone.js AppForms-Template/client/default/lib/appform-backbone.js
install the node modules in the AppForms-Template
cd AppForms-Template
npm install
and run grunt
grunt
clone the app forms-project-client template app
git clone git://github.com/feedhenry/appforms-project-client.git
copy the resulting lib.min.js to the appforms template
cp AppForms-Template/dist/client/default/lib.min.js appforms-project-client/www/lib.min.js
push the updated changes
git push origin master
Our SDK is release on npmjs. To do a release follow those steps:
- Update
package.json
,npm-shrinkwrap.json
,bower.json
file with the new version number. - Update
CHANGELOG.md
with some JIRA link - Do a PR, make sure Travis build passed. Merge.
- Tag the repository with the new version number:
git tag -s -a {VERSION} -m 'version {VERSION}' // e.g. {VERSION} format is '2.17.0'
- Push the new release tag on GitHub:
git push origin {TAG}
- Travis build will generate a relase for you in release tab.
- Login to npm as
feedhenry
or make sure your own login is part of the collaborator list in fh-js-sdk in npmjs.org
npm login
- Publish:
npm publish
The documentation is generated from fh-js-sdk.d.ts
.
The generated doc is comitted in doc/
folder and deployed to gh-pages
so that feedhenry.org and portal documentation can pick it up from a published location.
To publish doc, run the command:
npm run doc
Go to gh-pages and see recent commit for the publication.
Sync client development should be done in [fh-sync-js repository] (https://github.com/feedhenry/fh-sync-js)