// Sending an SMS using the Twilio API
// Twilio Credentials
const accountSid = 'ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
const authToken = 'your_auth_token';
// require the Twilio module and create a REST client
const client = require('twilio')(accountSid, authToken);
client.messages
.create({
to: '+491571111111',
from: '+491572222222',
body: 'The Force will be with you. Always.'
})
.then(message => console.log(message.sid));
Dominik Kundel | @dkundel | #webComponents #useThePlatform
What Are
Web Components?
Dominik Kundel | @dkundel | #webComponents #useThePlatform
Slide 10
Slide 10 text
The Web Components Specs...
• Custom Elements
• Shadow DOM
• HTML templates
• HTML imports
• (ES2015 modules)
Dominik Kundel | @dkundel | #webComponents #useThePlatform
Slide 11
Slide 11 text
Custom Elements
Click Me
Dominik Kundel | @dkundel | #webComponents #useThePlatform
! Extensible Web Manifesto
• The standards process should focus on adding new low-level
capabilities to the web platform that are secure and efficient.
• The web platform should expose low-level capabilities that
explain existing features, such as HTML and CSS, allowing
authors to understand and replicate them.
Dominik Kundel | @dkundel | #webComponents #useThePlatform
Slide 40
Slide 40 text
! "
How The Web Sausage Gets Made
by Monica Dinculescu (@notwaldorf)
youtube.com/watch?v=326SIMmRjc8
Dominik Kundel | @dkundel | #webComponents #useThePlatform