Importing Node Modules With JavaScript
问题 I apologize for the simple question, but I'm pretty new to web development and JavaScript. I want to import a package I've installed using npm, specifically shopify-buy following the guide here: https://shopify.github.io/js-buy-sdk/ The package is in my node_modules folder and I'm trying to import it into a JavaScript document using import Client from 'shopify-buy'; When I try to load everything up in Chrome, I get an error on the import line Uncaught SyntaxError: Unexpected identifier The