badman123
badman123

Reputation: 51

connect node project to existingstrongloop api

I have been looking around everywhere to find some documentation on how to connect to a strongloop api which is already live. I am currently in development of a new node.js project but need guidance on how to connect and use the api.

Upvotes: 0

Views: 15

Answers (1)

BrDaHa
BrDaHa

Reputation: 5760

To connect to a REST API in general, all you need is an HTTP client. You can use something low-level like cURL, or, a popular HTTP REST client like Postman, which can handle things like authentication on an API more easily.

Upvotes: 1

Related Questions