Web NFC Shopping Card demo
- Install the dependencies
With Node.js installed, run the following one liner from the root of your checkout of the repository:
npm install -g gulp bower && npm install && bower installThe app requires the following major dependencies:
- Node.js, used to run JavaScript tools from the command line.
- npm, the node package manager, installed with Node.js and used to install Node.js packages.
- gulp, a Node.js-based build tool.
- bower, a Node.js-based package manager used to install front-end packages (like Polymer).
To install dependencies:
- Check your Node.js version.
node --versionThe version should be at or above 0.12.x.
-
If you don't have Node.js installed, or you have a lower version, go to nodejs.org and click on the big green Install button.
-
Install
gulpandbowerglobally.
npm install -g gulp bowerThis lets you run gulp and bower from the command line.
- Install the apps's local
npmandbowerdependencies.
cd webnfc-shoppingcart-demo && npm install && bower installThis installs the element sets (Paper, Iron, Platinum) and tools the app requires to build and serve apps.
gulp serveUsing appengine:
dev_appserver.py webnfc-shoppingcart-demoThis outputs an IP address you can use to locally test and another that can be used on devices connected to your network.
gulpBuild and optimize the current project, ready for deployment. This includes linting as well as image, script, stylesheet and HTML optimization and minification.