File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -571,8 +571,11 @@ added: v22.4.0
571571
572572A browser-compatible implementation of [ ` localStorage ` ] [ ] . Data is stored
573573unencrypted in the file specified by the [ ` --localstorage-file ` ] [ ] CLI flag.
574+ The maximum amount of data that can be stored is 10 MB.
574575Any modification of this data outside of the Web Storage API is not supported.
575576Enable this API with the [ ` --experimental-webstorage ` ] [ ] CLI flag.
577+ ` localStorage ` data is not stored per user or per request when used in the context
578+ of a server, it is shared across all users and requests.
576579
577580## ` MessageChannel `
578581
@@ -951,9 +954,8 @@ added: v22.4.0
951954> Stability: 1.0 - Early development.
952955
953956A browser-compatible implementation of [ ` sessionStorage ` ] [ ] . Data is stored in
954- memory, with a storage quota of 10 MB. Any modification of this data outside of
955- the Web Storage API is not supported. Enable this API with the
956- [ ` --experimental-webstorage ` ] [ ] CLI flag.
957+ memory, with a storage quota of 10 MB. ` sessionStorage ` data persists only within
958+ the currently running process, and is not shared between workers.
957959
958960## ` setImmediate(callback[, ...args]) `
959961
You can’t perform that action at this time.
0 commit comments