Can't start meteor project

i’m working on project and everything is fine but now suddenly i can’t start the project when i use ‘meteor’ to start the project i get this error message

=> Started proxy.
C:\Users\Dima\AppData\Local.meteor\packages\static-html\1.2.2\plugin.compileStaticHtmlBatch.os\npm\node_modules\meteor\promise\node_modules\meteor-promise\promise_server.js:190
throw error;
^

in JSON at position 182token
at JSON.parse ()
at Object…json (C:\tools\isobuild\import-scanner.js:68:26)
at ImportScanner._readModule (C:\tools\isobuild\import-scanner.js:970:53)
at ImportScanner._readDepFile (C:\tools\isobuild\import-scanner.js:1029:22)
at each (C:\tools\isobuild\import-scanner.js:894:22)
at .each..forEach (C:\Users\Dima\AppData\Local.meteor\packages\meteor-tool\1.7.0_5\mt-os.windows.x86_64\dev_bundle\lib\node_modules\underscore\underscore.js:87:22)
at ImportScanner.scanFile (C:\tools\isobuild\import-scanner.js:853:5)
at outputFiles.forEach.file (C:\tools\isobuild\import-scanner.js:510:14)
at Array.forEach ()
at ImportScanner.scanImports (C:\tools\isobuild\import-scanner.js:508:22)
at sourceBatches.forEach.batch (C:\tools\isobuild\compiler-plugin.js:1106:17)
at Array.forEach ()
at Function.computeJsOutputFilesMap (C:\tools\isobuild\compiler-plugin.js:1074:19)
at ClientTarget.emitResources (C:\tools\isobuild\bundler.js:1066:8)
at buildmessage.enterJob (C:\tools\isobuild\bundler.js:837:12)
at C:\tools\utils\buildmessage.js:359:18
at exports.EnvironmentVariable.withValue (C:\tools\utils\fiber-helpers.js:89:14)
at C:\tools\utils\buildmessage.js:352:34
at exports.EnvironmentVariable.withValue (C:\tools\utils\fiber-helpers.js:89:14)
at C:\tools\utils\buildmessage.js:350:23
at exports.EnvironmentVariable.withValue (C:\tools\utils\fiber-helpers.js:89:14)
at Object.enterJob (C:\tools\utils\buildmessage.js:324:26)
at ClientTarget.make (C:\tools\isobuild\bundler.js:828:18)
at C:\tools\isobuild\bundler.js:3019:14
at C:\tools\isobuild\bundler.js:3108:20
at Array.forEach ()
at Function.
.each.
.forEach (C:\Users\Dima\AppData\Local.meteor\packages\meteor-tool\1.7.0_5\mt-os.windows.x86_64\dev_bundle\lib\node_modules\underscore\underscore.js:79:11)
at C:\tools\isobuild\bundler.js:3107:7
at C:\tools\utils\buildmessage.js:271:13
at exports.EnvironmentVariable.withValue (C:\tools\utils\fiber-helpers.js:89:14)
at C:\tools\utils\buildmessage.js:264:29
at exports.EnvironmentVariable.withValue (C:\tools\utils\fiber-helpers.js:89:14)
at C:\tools\utils\buildmessage.js:262:18
at exports.EnvironmentVariable.withValue (C:\tools\utils\fiber-helpers.js:89:14)
at C:\tools\utils\buildmessage.js:253:23
at exports.EnvironmentVariable.withValue (C:\tools\utils\fiber-helpers.js:89:14)
at Object.capture (C:\tools\utils\buildmessage.js:252:19)
at bundle (C:\tools\isobuild\bundler.js:3000:31)
at files.withCache (C:\tools\isobuild\bundler.js:2947:32)
at Object.withCache (C:\tools\fs\files.js:1710:12)
at Object.exports.bundle (C:\tools\isobuild\bundler.js:2947:16)
at Profile.run (C:\tools\runners\run-app.js:579:36)
at Function.run (C:\tools\tool-env\profile.js:490:12)
at bundleApp (C:\tools\runners\run-app.js:578:34)
at AppRunner._runOnce (C:\tools\runners\run-app.js:622:35)
at AppRunner._fiber (C:\tools\runners\run-app.js:880:28)
at C:\tools\runners\run-app.js:408:12

it’s very important to fixing it please help me

You can see at the top of the stack trace that the error is being thrown when Meteor’s import scanner tries to import a JSON file:

JSON.parse errors are almost always because of syntax errors in the json string being parsed.

Next steps for debugging is to find where you import or require JSON files and check that they are valid JSON (ie. don’t have any missing or extra commas etc.)

2 Likes