Posted 16 June 2025, 4:08 am EST - Updated 16 June 2025, 4:22 am EST
- Hi! I am using Spreadjs on node-server (v22.16.0) following the document, there is a setting for navigator:
const mockBrowser = require('mock-browser').mocks.MockBrowser;
global.navigator = window.navigator;
- After run “yarn start” I got an error: Cannot set property navigator of # which has only a getter,…
- As I researched, with the new node versions, there is something call “the JavaScript engine (V8) enforces stricter property descriptors”. I tried to fix by some solution but nothing work.
- Can I use Spreadjs on Node-server with the node versions that include “stricter property descriptors” ? Are there any solution for this issue?