`nexe index.js` error "FuseBox failed to initialize."
See original GitHub issueIs this a BUG or a FEATURE REQUEST?: Bug
What happened:
On a fresh debian install with node v10.15.1,
When launching the command nexe index.js
, I get the following message :
$ nexe index.js
ℹ nexe 2.0.0-rc.34
FuseBox failed to initialize. Please check that:
- the TypeScript version installed is >= 3.0
What you expected to happen: To build a simple exe file.
How to reproduce it (as minimally and precisely as possible):
- Install Debian Stretch 9.7
- Install Node 10 via nodesources
- Create a simple node script
index.js
:console.log('Hello World')
- Install nexe globally :
npm install -g nexe
- Start the command :
nexe index.js
Anything else we need to know?:
It’s a fresh install of debian so I may not have many common packages.
Environment
- Platform(OS/Version): Debian 9.7
- Host Node Version: 10.15.1
- Target Node Version: 6.4.1
- Nexe version: 2.0.0-rc.34
- Python Version: none
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:13 (2 by maintainers)
Top Results From Across the Web
NodeJS nexe fusebox fail - Stack Overflow
So i'm trying with next. But when i execute the nexe index.js. if gives this error: nexe 2.0.0-rc.34 FuseBox failed to initialize.
Read more >15 Common Error Codes in Node.js and How to Fix Them
Want to centralize and monitor your Node.js error logs? Head over to Logtail and start ingesting your logs in 5 minutes. 1. ECONNRESET....
Read more >Introduction to FuseBox — a Faster, Simpler webpack ...
Feras Khoursheed introduces you to FuseBox, a lightweight module bundler that serves as a faster, simpler and ultimately more flexible ...
Read more >Troubleshooting Node.js Deploys - Heroku Dev Center
Your Node.js deploy failed - now what? Start with these simple steps to troubleshoot a build issue. Check the buildpack.
Read more >Internal Fusebox Error Messages - Elavon Developer Portal
When API field 1003 = 0099, an error internal to Fusebox or related sub systems ... 033 SWITCH_LINE_DOWN, The Third Party Interface is...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I did have this problem too, using nexe@next works perfectly.
We ran into the same issue last night. The problem is the package.json specifies ^3.1.0 for the version of fuse-box, while they released 3.7.0 yesterday, which explicitly requires typescript 3.0.0< while nexe needs typescript 2.5.3. My workaround was to force installing fuse-box 3.1.0 instead of ^3.1.0.