Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. //express
  2.  
  3. server.use('/api', proxy({
  4. target: 'http://localhost:5000',
  5. ws: true,
  6. changeOrigin: true
  7. })
  8. )
  9.  
  10. //axios
  11.  
  12. const leaderboard = await axios({
  13. method: 'GET',
  14. url: 'http://localhost/api/users/leaderboard'
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement