Registry / devops / parcel-bundler-without-deasync

parcel-bundler-without-deasync

JSON →
library9.99.10jsnpmunverified

A modified fork of Parcel v1.10.3 with the problematic native dependency 'deasync' removed. Parcel is a zero-configuration web application bundler offering fast builds via multicore parallelism. This specific release (v9.99.10, based on Parcel 1.10.3) was created to avoid installation issues caused by deasync, which often fails on non-standard Node.js environments. However, note that this package is outdated compared to the current Parcel v2.x and is not actively maintained. Use the official Parcel v2 for new projects.

npm install parcel-bundler-without-deasync
INSTALL
IMPORT
SIG · PARCEL-BUNDLER-WIT
P
parcel-bundler-without-deasync
devopsjavascriptv9.99.10
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Bundler
import Bundler from 'parcel-bundler-without-deasync'
const Bundler = require('parcel-bundler-without-deasync')
CommonJS require works too, but ESM import is shown.
Bundler
const Bundler = require('parcel-bundler-without-deasync')
import { Bundler } from 'parcel-bundler-without-deasync'
This package exports a default class, not a named export.
Package
import Parcel from 'parcel-bundler-without-deasync'
import { default as Parcel } from 'parcel-bundler-without-deasync'
Default import is equivalent to importing Bundler.

Shows how to create a Parcel bundler instance, configure options, and run a build using the entry file.

import Bundler from 'parcel-bundler-without-deasync'; import path from 'path'; const entry = path.resolve(__dirname, 'index.html'); const bundler = new Bundler(entry, { outDir: './dist', watch: false, cache: true, contentHash: true, minify: false, scopeHoist: false, target: 'browser', bundleNodeModules: false, logLevel: 3, }); bundler.bundle().then(() => { console.log('Build complete'); }).catch(err => { console.error(err); });
parcel --version
Debug
Known issues
breakingPackage is based on Parcel v1.10.3 and does not include any updates from Parcel v2+.
fix
Use the official parcel package (v2.x) for current features and security fixes.
affects: >=9.99.10
deprecatedThis fork is unmaintained and should not be used in new projects.
fix
Switch to parcel v2.
affects: >=9.99.10
gotchaThe deasync dependency has been removed, but this may break code relying on synchronous file operations via deasync.
fix
Do not use the original Parcel v1 API that required deasync.
affects: >=9.99.10
Errors
Common errors & fixes
Cannot find module 'parcel-bundler-without-deasync'
Package not installed or typo in import.
fix
Run 'npm install --save-dev parcel-bundler-without-deasync' and ensure correct import.
Bundler is not a constructor
Wrong use of named import instead of default.
fix
Use 'import Bundler from ...' (default) not 'import { Bundler } from ...'.
Upgrade
Version history
9.99.10latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
parcel-bundler-without-deasync — npm install parcel-bundler-without-deasync · libregistry