View app.js
This file contains 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 person form "./person.css"; | |
element.innerHTML = `<h1 class="${person.name}">Name</h1>`; |
View person.css
This file contains 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
.name { | |
background: hotpink; | |
} |
View gulpfile.js
This file contains 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
return tsResult.js | |
.pipe( | |
sourcemaps.mapSources(function(sourcePath, file) { | |
return "../../" + sourcePath; // rewrite sourcePath to point to the correct TypeScript file paths | |
}) | |
) | |
.pipe(sourcemaps.write("./")) | |
.pipe(gulp.dest("./dist/src")); |
View launch.json5
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Attach to Server in Docker", | |
"port": 9222, | |
"timeout": 10000, | |
"stopOnEntry": true, |
View launch.json
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Docker: Attach to Node", | |
"port": 9229, | |
"address": "localhost", | |
"localRoot": "${workspaceFolder}", |
View Dockerfile
This file contains 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
FROM node:10.8.0-alpine | |
WORKDIR /server | |
COPY package.json package-lock.json ./ | |
RUN npm ci | |
COPY . /server | |
CMD [ "npm", "run", "start" ] |
View shadow-dom-example.js
This file contains 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
customElements.define("my-bubble", class extends HTMLElement { | |
constructor() { | |
super(); | |
const template = document.getElementById("my-element-template").content; | |
const shadowRoot = this.attachShadow({mode: "open"}); | |
shadowRoot.appendChild(template.cloneNode(true)); | |
} | |
}); |
View custom-element-example.js
This file contains 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
customElements.define("my-bubble", class extends HTMLElement { | |
constructor() { | |
super(); | |
const template = document.getElementById("my-element-template").content; | |
const color = this.getAttribute("background") || "white"; | |
template.querySelector(".bubble").style.background = color; | |
} | |
}); |
View template-example.html
This file contains 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
... | |
<template id="my-element-template"> | |
<style> | |
.bubble { | |
border: .4rem solid black; | |
border-radius: 2rem; | |
margin: 1rem; | |
padding: 1rem .5rem; | |
cursor: pointer; | |
font-size: 20px; |
View index.json
This file contains 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
[ | |
{ | |
"name": "web-framework", | |
"description": "Transforms a given application state into an HTML or DOM representation. Additionally, it is also often concerned with request routing, data fetching and persistence, change propagation, input validation, user session management and build optimizations." | |
}, | |
{ | |
"name": "testing-framework", | |
"description": "Provides a CLI and an API to run software tests and report results." | |
}, | |
{ |
NewerOlder