https://github.com/jhwohlgemuth/slides-all-roads-lead-to-javascript
All Roads Lead to JS - JavaScript as a Build Target
https://github.com/jhwohlgemuth/slides-all-roads-lead-to-javascript
Last synced: 3 months ago
JSON representation
All Roads Lead to JS - JavaScript as a Build Target
- Host: GitHub
- URL: https://github.com/jhwohlgemuth/slides-all-roads-lead-to-javascript
- Owner: jhwohlgemuth
- License: mit
- Created: 2018-04-17T14:55:36.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:45:35.000Z (over 1 year ago)
- Last Synced: 2025-01-25T13:45:08.345Z (5 months ago)
- Language: JavaScript
- Homepage: http://deeply-water.surge.sh
- Size: 3.03 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spectacle Boilerplate
## Contents
- [Reference](#reference)
- [Getting Started](#getting-started)
- [Build & Deployment](#build-deployment)## Reference
The Spectacle core API is available at [https://github.com/FormidableLabs/spectacle/blob/master/README.md](https://github.com/FormidableLabs/spectacle/blob/master/README.md).
## Getting Started
After downloading the boilerplate, your first order of business is to open a terminal and run
```bash
yarn
```
or
```bash
npm install
```
if you're about that life.Next, run
```bash
rm -R .git
```
to remove the existing version control.Then, to start up the local server, run
```bash
npm start
```Open a browser and hit [http://localhost:3000](http://localhost:3000), and we are ready to roll.
## Build & Deployment
Building the dist version of the project is as easy as running
```bash
npm run build
```If you want to deploy the slideshow to surge, run
```bash
npm run deploy
```