Skip to content

Instantly share code, notes, and snippets.

@xPomaHx
Created November 4, 2019 00:14
Show Gist options
  • Save xPomaHx/96fa35d1b51c3670e85ff5338117e7fb to your computer and use it in GitHub Desktop.
Save xPomaHx/96fa35d1b51c3670e85ff5338117e7fb to your computer and use it in GitHub Desktop.
litle front spamm test
(async () => {
Promise.all(Array(999).fill(true).map(() =>
fetch("/")
.then(response => (response.text()))))
.then(ar => {
console.dir(ar.reduce((acc, responseBody) => {
if (!acc[responseBody]) acc[responseBody] = 0
acc[responseBody] += 1;
}, {}))
})
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment