We have a server application that uses Web API 2 to expose restful API.
To help clients use our API better, we developed a js library that wraps API calls. Instead of distributing the js library to the clients, we'd like them to reference them directly from the server.
To make it easy on clients, I'd like this line to work:
<script src="serverUri/scriptsFolder/clientLibrary.js">
Is that possible? (using Web API 2, we'd prefer to have as fewer dependencies as possible)