Next.js Discord

Discord Forum

FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available

Answered
Jonas F. Franke posted this in #help-forum
Open in Discord
FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available
----- Native stack trace -----

 1: 00007FF68F09CF7B node::SetCppgcReference+16011
 2: 00007FF68F008969 node::OnFatalError+265
 3: 00007FF68FC74CCB v8::FunctionTemplate::RemovePrototype+299
 4: 00007FF68FC6378E v8::Object::GetCreationContextChecked+174
 5: 00007FF68EFF1478 uv_loop_fork+7960
 6: 00007FF61049692F


#
# Fatal error in , line 0
# Missing deoptimization information for OptimizedFrame::Summarize.
#
#
#
#FailureMessage Object: 000000F56CBFD9D0
----- Native stack trace -----

 1: 00007FF68F09CF7B void __cdecl node::SetCppgcReference(class v8::Isolate * __ptr64,class v8::Local<class v8::Object>,void * __ptr64)+16011
 2: 00007FF68EF8697F class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl node::TriggerNodeReport(class v8::Isolate * __ptr64,char const * __ptr64,char const * __ptr64,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const & __ptr64,class v8::Local<class v8::Value>)+73967
 3: 00007FF690204B65 void __cdecl V8_Fatal(char const * __ptr64,...)+197
 4: 00007FF68FB33A83 public: bool __cdecl v8::base::CPU::has_sse41(void)const __ptr64+163747
 5: 00007FF68FB12FA0 public: bool __cdecl v8::base::CPU::has_sse41(void)const __ptr64+29888
 6: 00007FF68FB18052 public: bool __cdecl v8::base::CPU::has_sse41(void)const __ptr64+50546
 7: 00007FF68FC5E572 public: static class v8::Local<class v8::StackTrace> __cdecl v8::StackTrace::CurrentStackTrace(class v8::Isolate * __ptr64,int,enum v8::StackTrace::StackTraceOptions)+50
 8: 00007FF68F007A0B EVP_MD_meth_get_input_blocksize+87243
 9: 00007FF68F09CE92 void __cdecl node::SetCppgcReference(class v8::Isolate * __ptr64,class v8::Local<class v8::Object>,void * __ptr64)+15778
10: 00007FF68F00897B void __cdecl node::OnFatalError(char const * __ptr64,char const * __ptr64)+283
11: 00007FF68FC74CCB public: void __cdecl v8::FunctionTemplate::RemovePrototype(void) __ptr64+299
12: 00007FF68FC6378E public: class v8::Local<class v8::Context> __cdecl v8::Object::GetCreationContextChecked(void) __ptr64+174
13: 00007FF68EFF1478 uv_loop_fork+7960
14: 00007FF61049692F

PS C:\Users\JonasFranke\Documents\Flaskyi\auth.flaskyi.com> 


I'm starting my dev server and visit localhost:3000 and after being around 2 seconds on the hosted localhost site, NextJS crashes and logs the below error in the console.

Informations:
* OS: Windows 11 Pro
* NextJS Version: 14.2.5
* NodeJS Version: 22.5.0
* Browser used for testing: Microsoft Edge

Can someone provide more information about this?
Answered by Jonas F. Franke
after downgrading on the node version 20.15.1 it seems to work again!
View full answer

2 Replies

I have found out it is a issue with the nodejs version 22.5.0: https://github.com/nodejs/node/issues/53902
after downgrading on the node version 20.15.1 it seems to work again!
Answer