I was wondering if there was any way to set up a website such that you could send data from the client to a server (no libraries at all, even for the server) and store it there (in local storage: https://www.w3schools.com/HTML/html5_webstorage.asp) entirely in vanilla js.
CodePudding user response:
This article is about sending. I don't know why do you talk about the local storage.
Storing it involves the server. You could learn Node.js (JS) or Flask (python) to do this.
If the server otherwise is not configured properly, it wouldn't allow sending & storing permanently.