2019-09-05
2172
Fred Schott
5593
Sep 5, 2019 â‹… 7 min read

Building without bundling: How to do more with less

Fred Schott Building @pikapkg. Previously: Ripple, Google, Box. Always bet on the web.

Recent posts:

Implementing Infinite Scroll In React Snap Carousel

Implementing infinite scroll in React with React Snap Carousel

Making carousels can be time-consuming, but it doesn’t have to be. Learn how to use React Snap Carousel to simplify the process.

David Omotayo
Dec 13, 2024 â‹… 10 min read
React Libraries For Building Forms And Surveys

React libraries for building forms and surveys

Consider using a React form library to mitigate the challenges of building and managing forms and surveys.

Hussain Arif
Dec 11, 2024 â‹… 7 min read
Hoppscotch Vs Postman: A Guide To API Testing

Hoppscotch vs. Postman: a guide to open source API testing

In this article, you’ll learn how to set up Hoppscotch and which APIs to test it with. Then we’ll discuss alternatives: OpenAPI DevTools and Postman.

Chigozie Oduah
Dec 10, 2024 â‹… 5 min read
React Native logo over red background.

Implementing camera functionality in React Native

Learn to migrate from react-native-camera to VisionCamera, manage permissions, optimize performance, and implement advanced features.

Chimezie Innocent
Dec 9, 2024 â‹… 13 min read
View all posts

4 Replies to "Building without bundling: How to do more with less"

  1. The package is now called snowpack and is nothing like the stuff you mentioned in the article. It now builds your code too, like webpack, has a built in devserver and it is far from lightweight, since upon installing it will add 209 packages to your node_modules folder. There is a create-snowpack-app and a snowpack.config.json

    This have esentially became another webpack. If your goal is to not have to transform any of my js files I would say that this is not the tool you are looking for. If it would do what the article said and only remain at transforming node_modules to web_modules, then it would be perfect.

  2. I forgot about this article! You’re right, `@pika/web` is now Snowpack and is focused more on helping you build & develop your entire website (not just your dependencies). But, if you want the functionality described in this article `snowpack install` is still the same command as the original `@pika/web`.

  3. I’ve followed your guide, all went Ok except for serve not having any hot reload feature. The package description page doesn’t mention it at all. I keep asking myself since started to learn some web modern development, and with several years of C/C++ experience on the back: ÂżWhy is all this shit trumpeted as the 21th century miracle? Broken functionality everywhere, all the time. Have any superstar web programmer ever touched an ANSI C compiler? Can web people embrace the philosophy of a lasting and working piece of software?

Leave a Reply