goCamelCase is a RESTful service in Go that takes string as an input and returns camelCase of the same based on a standard English Dictionary.
Example:
input: "onetwothree"
output: "oneTwoThree"
The service is deployed in Azure.
Instructions for installation and running the service can be found here.
The design of the service and libraries used internally can be found here. It also defines the assumptions of the service, and talks about the analysis and future improvements.