Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danvitoriano/javascript-34scj
JavaScript Introduction Blog Template with Bootstrap
https://github.com/danvitoriano/javascript-34scj
babel bootstrap css html javascript webpack
Last synced: about 13 hours ago
JSON representation
JavaScript Introduction Blog Template with Bootstrap
- Host: GitHub
- URL: https://github.com/danvitoriano/javascript-34scj
- Owner: danvitoriano
- Created: 2019-06-19T20:55:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-24T23:07:24.000Z (over 5 years ago)
- Last Synced: 2023-05-13T07:55:22.116Z (over 1 year ago)
- Topics: babel, bootstrap, css, html, javascript, webpack
- Language: HTML
- Homepage:
- Size: 84 KB
- Stars: 0
- Watchers: 1
- Forks: 30
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blog Template
## Parte 1
### Listar posts de uma API
**Web APIs - functions/interfaces**
```
- GlobalFetch.fetch() < WindowOrWorkerGlobalScope Fetch API
- Response.ok < WindowOrWorkerGlobalScope Fetch API
- Body.json() < Response stream Fetch API
- Console.log() < Window.console WindowGlobalScope
- Animation
```**Objetos globais - global objects**
```
- Array.prototype.join()
- Array.prototype.map()
- Array.prototype.slice()
- Array.prototype.splice()
- String.prototype.charAt()
- String.prototype.toUpperCase()
- String.prototype.substring()
- Function.prototype
- Math.random()
- Math.floor()```
**Controle de Fluxo - control flow**
```
- Promise.prototype.then()
- if/else
```**Declarações - statements**
```
- var
- const
- let
- return
- function
- arrow function
- class
- export
- import
```**Operadores - operator**
```
- new
- this
```**DOM**
```
- Element.innerHTML
- Element.animate(keyframes, option)
- HTMLElement.focus()
- Document.getElementById(el)
- Document.addEventListener(event, function)
- Document.querySelector(el)
- Document.style.visibility
- Window.localStorage.setItem(key,value)
- Window.location (href, pathname, search)
```**Design Patterns**
```
- IIFE
- Module Pattern
- CommonJS
-
```**Diversos - misc**
```
- Template Literals
- CSS code
- CSS random version
- WebPack
- Babel
```