Skip to content

Commit

Permalink
Added bower and bundle (Issue #107)
Browse files Browse the repository at this point in the history
  • Loading branch information
GitBrent authored and GitBrent committed Jun 22, 2017
1 parent 9be8842 commit fe9d701
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ Quickly and easily create PowerPoint presentations with a few simple JavaScript
- [Live Demo](#live-demo)
- [Installation](#installation)
- [Client-Side](#client-side)
- [Include Local Scripts](#include-local-scripts)
- [Include Bundled Script](#include-bundled-script)
- [Install With Bower](#install-with-bower)
- [Node.js](#nodejs)
- [Presentations: Usage and Options](#presentations-usage-and-options)
- [Creating a Presentation](#creating-a-presentation)
Expand Down Expand Up @@ -102,12 +105,23 @@ Use JavaScript to Create a PowerPoint presentation with your web browser right n

# Installation
## Client-Side
PptxGenJS requires only 2 additional JavaScript libraries:
### Include Local Scripts
```javascript
<script lang="javascript" src="PptxGenJS/libs/jquery.min.js"></script>
<script lang="javascript" src="PptxGenJS/libs/jszip.min.js"></script>
<script lang="javascript" src="PptxGenJS/dist/pptxgen.js"></script>
```

### Include Bundled Script
```javascript
<script lang="javascript" src="PptxGenJS/dist/pptxgen.bundle.js"></script>
```

### Install With Bower
```javascript
bower install pptxgen
```

## Node.js
[PptxGenJS NPM Homepage](https://www.npmjs.com/package/pptxgenjs)
```javascript
Expand Down

0 comments on commit fe9d701

Please sign in to comment.