https://github.com/kylemit/staticgenpres
JAMming Out With Static Site Generators
https://github.com/kylemit/staticgenpres
eleventy tech-talk
Last synced: 5 months ago
JSON representation
JAMming Out With Static Site Generators
- Host: GitHub
- URL: https://github.com/kylemit/staticgenpres
- Owner: KyleMit
- Created: 2019-09-23T23:50:03.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T04:47:43.000Z (over 3 years ago)
- Last Synced: 2025-12-01T22:12:25.348Z (7 months ago)
- Topics: eleventy, tech-talk
- Language: JavaScript
- Homepage: https://static-gen-presentation.netlify.com/
- Size: 3.36 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# JAMming Out With Static Site Generators
By Zeke & Kyle
Available at https://static-gen-presentation.netlify.com/
[](https://app.netlify.com/sites/static-gen-presentation/deploys)
## Built With
[11ty](https://www.11ty.io/)
[typed.js](https://github.com/mattboldt/typed.js/)
[reveal.js](https://github.com/hakimel/reveal.js/#markdown)
[reveal-md](https://github.com/webpro/reveal-md)
## Project Setup
* Install [Node.js & NPM](https://nodejs.org/en/download/)
* Run `npm install` in the project directory to install local dependencies
* Install eleventy globally
```bash
npm i @11ty/eleventy -g
```
* Run `npm run serve` to run a local dev environment
* Access dev copy of the site at [localhost:8080](http://localhost:8080)
## NPM Scripts
```bash
npm run build # runs `npx eleventy` to build the site
npm run serve # builds site + serves `_site` directory
```