This repository was archived by the owner on Jun 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 821
This repository was archived by the owner on Jun 23, 2025. It is now read-only.
Angular 4 Universal - SyntaxError: Unexpected token export #1052
Copy link
Copy link
Closed
Description
Issue description
I'm unable to start my project in universal mode. However, when executing it in AOT with ng serve
, all is well.
Steps to reproduce and a minimal demo of the problem
- Clone project https://github.com/philippeboyd/angular-seo
- npm install
- npm run start
Current behavior
Compiles but server cannot start
$ npm run start
> [email protected] prestart /home/philippe/web/angular-seo
> ng build --prod && ngc
Hash: 7d85520031346575c3db
Time: 24216ms
chunk {0} polyfills.fdc74e8f101f8a37cfda.bundle.js (polyfills) 160 kB {4} [initial] [rendered]
chunk {1} main.1765992e8c1c2054a14a.bundle.js (main) 30.1 kB {3} [initial] [rendered]
chunk {2} styles.d41d8cd98f00b204e980.bundle.css (styles) 69 bytes {4} [initial] [rendered]
chunk {3} vendor.54e8d36ccd5e25bbf525.bundle.js (vendor) 1.52 MB [initial] [rendered]
chunk {4} inline.9e599a3566ef53034f50.bundle.js (inline) 0 bytes [entry] [rendered]
> [email protected] start /home/philippe/web/angular-seo
> ts-node src/server.ts
/home/philippe/web/angular-seo/node_modules/@agm/core/index.js:2
export * from './directives';
^^^^^^
SyntaxError: Unexpected token export
at Object.exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:543:28)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.require (module.js:498:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (/home/philippe/web/angular-seo/src/app/app.module.ts:5:1)
at Module._compile (module.js:571:32)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: `ts-node src/server.ts`
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.
Expected/desired behavior
Server starting without errors
angular2 & angular-google-maps version
- Angular 4.1.3
- agm/core 1.0.0-beta.0
Other information
I've looked into issue #668 but it's doesn't seem to be the same issue...
gabrielamarques, felipewaku, RafaelFS, fr0wsTyl, dannybombastic and 13 more