What?

Why?

How?

Create Read Update Delete

Example


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Local Storage CRUD Example</title>
</head>
<body>
    <h1>Local Storage CRUD Example</h1>
    <input type="text" id="dataInput" placeholder="Enter data">
    <button onclick="createOrUpdate()">Create/Update</button>
    <button onclick="read()">Read</button>
    <button onclick="deleteItem()">Delete</button>
    <button onclick="clearAll()">Clear All</button>

    <script>
        function createOrUpdate() {
            //set the key based on your requirements
            var key = 'example_key';
            var exampleData = document.getElementById('dataInput').value;
            localStorage.setItem(key, exampleData);
            alert('Data added/updated successfully!');
        }

        function read() {
            var key = 'example_key';
            var exampleData = localStorage.getItem(key);
            if (exampleData) {
                alert('Stored data: ' + exampleData);
            } else {
                alert('No data found!');
            }
        }

        function deleteItem() {
            var key = 'example_key';
            localStorage.removeItem(key);
            alert('Data deleted successfully!');
        }

        function clearAll() {
            localStorage.clear();
            alert('All data cleared successfully!');
        }
    </script>
</body>
</html>



Real World Application

I created simple web page(static page) for our website when I felt the necessity of storing text for example link or other text for later use. It works like notepad but for the web browser. All the data stored in the web browser.

The application

https://purnorup.com/txtPad

When to use and When not to use And the considerations

The local storage works great and the the domain(the website which is storing the data) can access the data under that specific domain.

Where works best

User settings like

language choices, theme settings, or form auto fill data and other related settings

Where not to use!

Local storage is not secure for storing sensitive information like passwords, access tokens, or other security details. Bad actors can potentially access this data if they gain control of a user's device. Store sensitive data on secure cookies or JWT (JSON Web Tokens)

This site uses cookies from Google to deliver its services and analyze traffic. By using this site, you agree to its use of cookies.