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
For the past week or two I've been trying to get ASQ running using the installation guide, but I run into errors no matter what.
I receive this error when attempting to run npm start. Notably, there is no slide2html folder in the ASQ directory after running the other commands npm install and npm run build:pro.
> [email protected] start /Users/malcolmanderson/Documents/Programming/ASQ
> NODE_ENV=production node -r dotenv/config app.js dotenv_config_silent=true
internal/modules/cjs/loader.js:800
throw err;
^
Error: Cannot find module '../../slide2html'
Require stack:
- /Users/malcolmanderson/Documents/Programming/ASQ/lib/upload/pdf.js
- /Users/malcolmanderson/Documents/Programming/ASQ/lib/upload/upload.js
- /Users/malcolmanderson/Documents/Programming/ASQ/routes/user/presentations/handlers.js
- /Users/malcolmanderson/Documents/Programming/ASQ/routes/user/presentations/routes.js
- /Users/malcolmanderson/Documents/Programming/ASQ/routes/user/presentations/index.js
- /Users/malcolmanderson/Documents/Programming/ASQ/routes/user/routes.js
- /Users/malcolmanderson/Documents/Programming/ASQ/routes/user/index.js
- /Users/malcolmanderson/Documents/Programming/ASQ/routes/routes.js
- /Users/malcolmanderson/Documents/Programming/ASQ/routes/index.js
- /Users/malcolmanderson/Documents/Programming/ASQ/lib/middleware/index.js
- /Users/malcolmanderson/Documents/Programming/ASQ/app.js
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:797:15)
at Function.Module._load (internal/modules/cjs/loader.js:690:27)
at Module.require (internal/modules/cjs/loader.js:852:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.<anonymous> (/Users/malcolmanderson/Documents/Programming/ASQ/lib/upload/pdf.js:15:20)
at Module._compile (internal/modules/cjs/loader.js:959:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:995:10)
at Module.load (internal/modules/cjs/loader.js:815:32)
at Function.Module._load (internal/modules/cjs/loader.js:727:14)
at Module.require (internal/modules/cjs/loader.js:852:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.<anonymous> (/Users/malcolmanderson/Documents/Programming/ASQ/lib/upload/upload.js:10:13)
at Module._compile (internal/modules/cjs/loader.js:959:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:995:10)
at Module.load (internal/modules/cjs/loader.js:815:32)
at Function.Module._load (internal/modules/cjs/loader.js:727:14)
at Module.require (internal/modules/cjs/loader.js:852:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.<anonymous> (/Users/malcolmanderson/Documents/Programming/ASQ/routes/user/presentations/handlers.js:19:16)
at Module._compile (internal/modules/cjs/loader.js:959:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:995:10)
at Module.load (internal/modules/cjs/loader.js:815:32) {
code: 'MODULE_NOT_FOUND',
requireStack: [
'/Users/malcolmanderson/Documents/Programming/ASQ/lib/upload/pdf.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/lib/upload/upload.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/routes/user/presentations/handlers.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/routes/user/presentations/routes.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/routes/user/presentations/index.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/routes/user/routes.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/routes/user/index.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/routes/routes.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/routes/index.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/lib/middleware/index.js',
'/Users/malcolmanderson/Documents/Programming/ASQ/app.js'
]
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: `NODE_ENV=production node -r dotenv/config app.js dotenv_config_silent=true`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/malcolmanderson/.npm/_logs/2019-12-01T05_05_55_531Z-debug.log
The text was updated successfully, but these errors were encountered:
For the past week or two I've been trying to get ASQ running using the installation guide, but I run into errors no matter what.
I receive this error when attempting to run
npm start
. Notably, there is noslide2html
folder in the ASQ directory after running the other commandsnpm install
andnpm run build:pro
.The text was updated successfully, but these errors were encountered: