Skip to content

Instantly share code, notes, and snippets.

View nOy39's full-sized avatar
💭
Return

Andrey nOy39

💭
Return
View GitHub Profile
@nOy39
nOy39 / webdev_online_resources.md
Created July 18, 2018 07:46 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@nOy39
nOy39 / requests.js
Created June 18, 2018 09:06 — forked from drucoder/requests.js
Spring Boot REST: тестироем rest методы
// GET all
fetch('/message/').then(response => response.json().then(console.log))
// GET one
fetch('/message/2').then(response => response.json().then(console.log))
// POST add new one
fetch(
'/message',
{