Right now I'm just using localhost for my own Node server testing but what if I want to distribute an app in TestFlight so testers can experience a chat app simulation and view mock/static chat user avatars, chat user usernames, chat user lat.long. What do you recommend to host the Node server? Heroku or Amazon? After I have Node server hosting how do I access it for testing in the Terminal?
And for tools is there something for Atom that can push localhost updates to the live Node server? Can a Node server be hosted on GitHub? That way my local Git can update the live server.
Lastly, right now I just have simple properties like username and comments. I guess
I guess username and comment are built into js so what about avatar and location? When you have properties like username avatars that require images and username lat.log data how do you write that and where do you put the avatar images?
Or maybe what I should be asking is how do you create a user object? So user12354 has a username of "dave123"; location of "-34.0, 123.00"; avatar "stallone.jpg".
And for tools is there something for Atom that can push localhost updates to the live Node server? Can a Node server be hosted on GitHub? That way my local Git can update the live server.
Lastly, right now I just have simple properties like username and comments. I guess
Code:
var comments = [
{
username: "osaka123",
comment: "This video was good"
}
];
I guess username and comment are built into js so what about avatar and location? When you have properties like username avatars that require images and username lat.log data how do you write that and where do you put the avatar images?
Or maybe what I should be asking is how do you create a user object? So user12354 has a username of "dave123"; location of "-34.0, 123.00"; avatar "stallone.jpg".