File tree 1 file changed +5
-3
lines changed
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
592
592
593
593
A browser-compatible implementation of [ ` localStorage ` ] [ ] . Data is stored
594
594
unencrypted in the file specified by the [ ` --localstorage-file ` ] [ ] CLI flag.
595
+ The maximum amount of data that can be stored is 10 MB.
595
596
Any modification of this data outside of the Web Storage API is not supported.
596
597
Enable 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.
597
600
598
601
## ` MessageChannel `
599
602
@@ -972,9 +975,8 @@ added: v22.4.0
972
975
> Stability: 1.0 - Early development.
973
976
974
977
A 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.
978
980
979
981
## ` setImmediate(callback[, ...args]) `
980
982
You can’t perform that action at this time.
0 commit comments