Node.js on TIBCO Cloud? Integration
- Getting started
- Prerequisites
- My first Node.js app
- Deploy your first Node.js app
- Test your Node.js app
- Manage your Node.js apps
- Adding dependencies to your app
- Run your app locally
- Understanding the generated code
- Advanced topics
- Best practices
- Resources
The Node.js package ecosystem, npm, is one of the largest ecosystems of open source libraries in the world. It helps you connect to a massive amount of other apps and technologies: databases, SaaS apps, WebSocker servers, and a whole bunch more. You can look at npmjs.com and see all of the modules that you could use in your TIBCO Cloud? Integration apps.
You can use them in your app as soon as you have added the module to your package.json
file. To do that, simply run the below command in the same folder as your package.json
file is located.
$ npm install --save <package name>
Note: Currently you can use all the NPM modules that are available on npmjs.com, though TIBCO reserves the right to blacklist any modules that are incompatable with the TCI infrastructure.
Recommended Comments
There are no comments to display.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now