https://github.com/bkawk/upload-json
Polymer2 Web Component that uploads and parses a JSON file
https://github.com/bkawk/upload-json
json polymer2 upload
Last synced: 4 months ago
JSON representation
Polymer2 Web Component that uploads and parses a JSON file
- Host: GitHub
- URL: https://github.com/bkawk/upload-json
- Owner: bkawk
- License: mit
- Created: 2017-04-09T15:47:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-09T18:03:17.000Z (about 8 years ago)
- Last Synced: 2024-12-26T22:18:32.736Z (6 months ago)
- Topics: json, polymer2, upload
- Language: HTML
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# \
some description
## Install the Polymer-CLI
First, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polymer-cli) installed. Then run `polymer serve` to serve your application locally.
## Viewing Your Application
```
$ polymer serve
```## Building Your Application
```
$ polymer build
```This will create a `build/` folder with `bundled/` and `unbundled/` sub-folders
containing a bundled (Vulcanized) and unbundled builds, both run through HTML,
CSS, and JS optimizers.You can serve the built versions by giving `polymer serve` a folder to serve
from:```
$ polymer serve build/bundled
```## Running Tests
```
$ polymer test
```Your application is already set up to be tested via [web-component-tester](https://github.com/Polymer/web-component-tester). Run `polymer test` to run your application's test suite locally.