Skip to content

Instantly share code, notes, and snippets.

@anchetaWern
Last active May 31, 2019 08:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anchetaWern/68feec5ee803eaecbf748819c41c40aa to your computer and use it in GitHub Desktop.
Save anchetaWern/68feec5ee803eaecbf748819c41c40aa to your computer and use it in GitHub Desktop.
React Native Stream Group Chat Tutorial: Run server
// server/server.js
const PORT = 5000;
app.listen(PORT, (err) => {
if (err) {
console.error(err);
} else {
console.log(`Running on ports ${PORT}`);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment