Skip to content
Open navbar menu
Sign UpLog In
Profile icon

OfirApps

@OfirApps
Moon
  • quickieWeb

    Cover page
    Made with HTML, CSS, JS

    Quickie is a local site for "yahalom middle school' in shoham, israel. it offers many selfhosted services such as chat, and two file sharing services. all connected to quickies ecosystem

    Recent comments (0)
Repls
Community
OfirApps
OfirApps
published an Update
1 year ago
1
empty
empty
Tired of the new ReplIt editor?
Tired of constantly needing to replace the url with ?monaco=1 ??? Well, I've made a UserScript for that! Simply download the user script and it will replace the URL for you! The userscript > The script will detect if the url is a repl > The script will detect and properly replace the url if the url has #file on it. > That's literally it. Thanks, Ofir
OfirApps
OfirApps
shared a Post
2 years ago
hello, im looking a long time for the answer and i cant find it anywere (How to send https get request on js and show it to the user.)
ruiwenge2
ruiwenge2
you can use the fetch API: fetch("URL", { method:"GET" }).then(response => response.text()).then(response => alert(response)); replace URL with the url you want to get the request from. you can do whatever you want with the response. I hope this helps!2 years ago