htb

About

2023/08/08

update:2023-08-08

2年ぶりにこのブログを開いてみたらGatsbyのlatestがv5になってた。これ作った時v2だったのに。 てか今ブログ作るとしてもNextのSSGがメインでそんなにGatsbyの話観測してない。

NextのApp Routerを使って何か作ろうと思って、せっかくだからメモるかと思ってブログ開いたのにここの検討に一番時間使った。 意味ねえな。

今日のエラー解消

App Routerを使ってみるためNextのプロジェクト開いたらなんかエラー吐いた。

SyntaxError: Unexpected token '??='
    at wrapSafe (internal/modules/cjs/loader.js:1001:16)
    at Module._compile (internal/modules/cjs/loader.js:1049:27)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
    at Module.load (internal/modules/cjs/loader.js:950:32)
    at Function.Module._load (internal/modules/cjs/loader.js:790:12)
    at Module.require (internal/modules/cjs/loader.js:974:19)
    at require (internal/modules/cjs/helpers.js:101:18)
    at getFetchImpl (/hoge/good-first-issues/node_modules/next/dist/server/node-polyfill-fetch.js:6:16)
    at getRequestImpl (/hoge/good-first-issues/node_modules/next/dist/server/node-polyfill-fetch.js:9:31)
    at get (/hoge/good-first-issues/node_modules/next/dist/server/node-polyfill-fetch.js:40:24)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! good-first-issues@0.1.0 dev: `next dev`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the good-first-issues@0.1.0 dev 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/koichiro_hayashi/.npm/_logs/2023-08-08T07_16_34_326Z-debug.log

結論なんか、Nodeのバージョンが14だったので ??=(Node v15~)が解釈できなかったみたい。 参考

作業環境のNodeのバージョンをあげて完了。

この程度のエラーでも、個人の暇つぶしでやってるとめんどくさくて挫折してしまう


© 2023 Hayashi