Questions tagged [parcel]

In Android, a Parcel is a container for a message (data and object references). It's a high-performance alternative to Java's standard serialization.

This should not be confused with That Parcel is an application bundler for HTML, CSS, and Js

537 questions
3
votes
1 answer

Using Parcel to generate single JS file from several JS files and keep framework path defaults

I'm working on updating an application so it is more maintainable. This application currently uses a very large JS file with many JS classes. I have separate the code so each JS class is in its own JS file. I would like to use Parcel to combine all…
user2300867
  • 593
  • 1
  • 12
  • 28
3
votes
3 answers

locahost returns ERR_CONNECTION_REFUSED on React component edit

I use MEAN stack, nodemon and Parcel. Every time when I edit my frontend code, axios returns net::ERR_CONNECTION_REFUSED, and I need to reload page 1-3 times to avoid this error. What can cause it? Here is my request code: componentDidMount(){ …
user10908202
3
votes
2 answers

Cannot read property 'fragment' of undefined

I'm trying to nest one svelte component in another svelte component. //index.js import Parent from './Parent.svelte'; new Parent({ target: document.querySelector('main') }) // Parent.svelte