{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}
After installing parcel with npm install -g parcel-bundler
parcel should not crash
parcel crashes
(node:29744) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Cannot find module './SourceMapPackager'
Up-to-date Debian Sid installation with a freshly installed parcel.
| Software | Version(s) |
| ---------------- | ---------- |
| Parcel | 1.5.0 |
| Node | 6.12.0 |
| npm | 4.3.0 |
| Operating System | Debian Sid |
The same happened to me when following Getting Started
| Software | Version |
| --- | --- |
| Parcel | 1.5.0 |
| Node | 6.12.3 |
| npm | 5.6.0 |
| OS | Ubuntu 16.04.3 LTS |
This is because Node 6 is not supported, Parcel currently only works with Node 8+ We are working to support Node 6 and 7 as well
You are right. After update it works.
Most helpful comment
This is because Node 6 is not supported, Parcel currently only works with Node 8+ We are working to support Node 6 and 7 as well