- Building a website with modern tooling and understanding of front-end and back-end concepts
- Front-end technologies: HTML5, CSS3 (Bootstrap - optional), Javascript (Vue.js)
- Back-end technologies: Node.js (Express)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { fetchMatches, formatAsTree } from './tournament' | |
async function main() { | |
const matchesData = await fetchMatches(LCS_PROVING_GROUNDS_PLAYOFFS_ID) | |
bracketTree = formatAsTree(matchesData) | |
console.log(bracketTree) | |
} | |
main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = new Vue({ | |
el: '#app', | |
data: { | |
requests: [], | |
listOfNames: [] | |
}, | |
created: function (argument) { | |
this.fetchRequests() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 585, | |
"slug": "faker", | |
"name": "Faker", | |
"first_name": "Sanghyeok", | |
"last_name": "Lee", | |
"role": "mid", | |
"stats": [ | |
{ | |
"serie": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ignite node | |
NAME: | |
.HelpName node - Manage nodes | |
USAGE: | |
.HelpName node command [command options] [arguments...] | |
COMMANDS: | |
list, ls List nodes in the cluster | |
inspect Display detailed information on one or more nodes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ignite | |
NAME: | |
.Name - A new cli application | |
USAGE: | |
.HelpName [global options] command [command options] [arguments...] | |
VERSION: | |
1.0.0 |