You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SyntaxError: C:\Users\User\Desktop\yt2009\back\config.json: Unexpected token . in JSON at position 33
at parse ()
at Module._extensions..json (node:internal/modules/cjs/loader:1432:39)
at Module.load (node:internal/modules/cjs/loader:1197:32)
at Module._load (node:internal/modules/cjs/loader:1013:12)
at Module.require (node:internal/modules/cjs/loader:1225:19)
at require (node:internal/modules/helpers:177:18)
at Object. (C:\Users\User\Desktop\yt2009\back\yt2009androidsignin.js:5:16)
at Module._compile (node:internal/modules/cjs/loader:1356:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1414:10)
at Module.load (node:internal/modules/cjs/loader:1197:32)
Node.js v18.19.0
The text was updated successfully, but these errors were encountered:
you broke your config, my bet is that you forgot to wrap a string (like an IP) in quotation marks.
for example, such a part: "ip":192.168.1.7 should be "ip":"192.168.1.7". note that not all config settings are strings, simpler things like toggles (like gdata_auth or trusted_context) or numbers (like port) aren't strings, you don't want to put absolutely everything into quotation marks.
C:\Users\User\Desktop\yt2009\back>node backend.js
node:internal/modules/cjs/loader:1435
throw err;
^
SyntaxError: C:\Users\User\Desktop\yt2009\back\config.json: Unexpected token . in JSON at position 33
at parse ()
at Module._extensions..json (node:internal/modules/cjs/loader:1432:39)
at Module.load (node:internal/modules/cjs/loader:1197:32)
at Module._load (node:internal/modules/cjs/loader:1013:12)
at Module.require (node:internal/modules/cjs/loader:1225:19)
at require (node:internal/modules/helpers:177:18)
at Object. (C:\Users\User\Desktop\yt2009\back\yt2009androidsignin.js:5:16)
at Module._compile (node:internal/modules/cjs/loader:1356:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1414:10)
at Module.load (node:internal/modules/cjs/loader:1197:32)
Node.js v18.19.0
The text was updated successfully, but these errors were encountered: