Skip to content

Instantly share code, notes, and snippets.

@paulbreslin
Last active July 3, 2017 16:15
Show Gist options
  • Save paulbreslin/9f18e9d2253c6ed289133e87c935ebe0 to your computer and use it in GitHub Desktop.
Save paulbreslin/9f18e9d2253c6ed289133e87c935ebe0 to your computer and use it in GitHub Desktop.
// API
router.get('/words', async (req, res) => {
const {userId} = req.query;
const wordsSnapshot = await db.ref(`words/${userId}`).once('value');
res.send(wordsSnapshot.val())
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment