https://github.com/ngrok/ngrok-ipaas-example
Example of a Remote API for integration with iPaaS solutions
https://github.com/ngrok/ngrok-ipaas-example
Last synced: 3 months ago
JSON representation
Example of a Remote API for integration with iPaaS solutions
- Host: GitHub
- URL: https://github.com/ngrok/ngrok-ipaas-example
- Owner: ngrok
- License: apache-2.0
- Created: 2022-03-04T21:11:50.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-04T21:25:32.000Z (about 3 years ago)
- Last Synced: 2025-03-07T05:31:11.462Z (3 months ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 2
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ngrok-ipaas-example
Example of a Remote API for integration with iPaaS solutions
## How to launch this app
1. Clone this repo `https://github.com/ngrok/ngrok-ipaas-example.git`
2. Install and launch app:
npm install
npm run app## How to use this sample with ngrok
1. [Download and Install ngrok](https://ngrok.com/download).
2. [Sign Up for a free ngrok account](https://ngrok.com/signup) and get an access token
3. Add the access token to your ngrok client: `ngrok --authtoken=`
4. Launch ngrok pointing to enable remote access to your sample api: `ngrok http 3000`
5. Optionally, add basic authentication to restrict access (replacing `userId` and `password` with strong credentials of your choice): `ngrok http 3000 --auth=userId:password`