I do not have any database connection and I have created localhost using http-server -o. -o
I want to store form data in the localhost that I have created.
$scope.sendData = function() {
$http({
url: 'local-host://8080',
method: "POST",
data: { $scope.users }
}).success(function(response){
alert("data stored successfully");
});
}