Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
With JavaScript you can save things to an external file, say a json file
https://stackoverflow.com/q/... -
Ezard19607yTake a look at HTML5's Web Storage API: https://developer.mozilla.org/en-US...
Allows you to save stuff on the client machine - no backend required at all!
(however, it can be deleted by the user) -
C0D4669027yYou can use web storage in most modern browsers.
Or cookies if it’s small amount of data.
If you need to actually reuse this data or store it permanently, look at connecting to a database of some kind, or saving files... if a very small project on your server. -
al-m26737yThese are all good. I'll look into it. Tho I should say it's just slightly above a to-do list tbh. It's just a html file I launch on my browser basically.
Will these still help? -
@al-m Depends on what you call "above a to-do list", but saving into a json or stocking into the web browser *should* enough
Related Rants
Err. I'm working on something this is a stupid question. But is there a way to save data and stuff without having to go into back end?
If not or if there is. What should I look into/learn to get it done without having to go too deep
question
back-end
front end
javascript