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 @@ -592,8 +592,11 @@ added: v22.4.0
592592
593593A browser-compatible implementation of [ ` localStorage ` ] [ ] . Data is stored
594594unencrypted in the file specified by the [ ` --localstorage-file ` ] [ ] CLI flag.
595+ The maximum amount of data that can be stored is 10 MB.
595596Any modification of this data outside of the Web Storage API is not supported.
596597Enable this API with the [ ` --experimental-webstorage ` ] [ ] CLI flag.
598+ ` localStorage ` data is not stored per user or per request when used in the context
599+ of a server, it is shared across all users and requests.
597600
598601## ` MessageChannel `
599602
@@ -972,9 +975,8 @@ added: v22.4.0
972975> Stability: 1.0 - Early development.
973976
974977A browser-compatible implementation of [ ` sessionStorage ` ] [ ] . Data is stored in
975- memory, with a storage quota of 10 MB. Any modification of this data outside of
976- the Web Storage API is not supported. Enable this API with the
977- [ ` --experimental-webstorage ` ] [ ] CLI flag.
978+ memory, with a storage quota of 10 MB. ` sessionStorage ` data persists only within
979+ the currently running process, and is not shared between workers.
978980
979981## ` setImmediate(callback[, ...args]) `
980982
You can’t perform that action at this time.
0 commit comments