Search results for using the aws javascript sdk in the browser Scripts fewliveasync.js

Using the AWS JavaScript SDK in the Browser

by Saad Mousliki

…the AWS services from a browser-based app. The New AWS JS SDK Architecture As mentioned in the introduction, using the new JavaScript SDK in the browser, a web app could…

Improving Browser Detection

by Ryan Morr

…practice became abused, quickly becoming routine rather than a last resort, even finding its way into scripts where simple object detection would suffice. JavaScript libraries would unnecessarily incorporate browser detection,…

45 Useful JavaScript Tips, Tricks and Best Practices

by Saad Mousliki

…be used to display a simple alert in the web browser but also to control a robot (using nodebot, or nodruino). The developers who master JavaScript and write organized and…

Why you should limit JavaScript — and how to do it

mm by Table XI

…frontend JavaScript solves SEO and load-time problems when executed properly. Unfortunately it often isn’t. SSR is unreliable and expensive, just another example of attempting to solve the problem of using

Building a Parallax Scrolling Game with Pixi.js

by Brian Rinaldi

…our first steps towards building a similar parallax scroller using JavaScript and the Pixi.js 2D rendering engine. What you will learn… The fundamentals of Pixi.js How to work with textures…

Best of JavaScript, HTML & CSS – 2013

by Brian Rinaldi

…iOS 7 and HTML5: problems, changes and new APIs Sean Voisen explains reactive programming concepts, how they’re beneficial and how they’re implemented in JavaScript using Bacon.js. Functional Reactive Programming in…

Building a JavaScript Library with Grunt.js

by Brian Rinaldi

…the JSHint Task The grunt-contrib-jshint plugin has one task named “jshint.” We will configure it to check all JavaScript files in both the src and test directories using the options…

JavaScript Architecture for the 23rd Century

by Jonathan Creamer

JavaScript defines a new way of creating classes in JavaScript. If we take our previous examples and write them using ES6, the Starship class would look like… class Starship {…

Replacing jQuery with Vanilla JavaScript

by Brian Rinaldi

…related to the two states. While I could use JavaScript to directly affect the style of the target element instead of adding a class, I find that using CSS (almost)…

Taming Asynchronous JavaScript Programming with ECMAScript6

by Brian Rinaldi

…quite a lot in the JavaScript community lately. Oftentimes, methods that return promises are chained using a then() method construct. However, what if you are dealing a combination of methods,…