Search results for modern web best practice pubsub Scripts fewliveasync.js

Getting Started with Modern Web Development

by Mike Hostetler

…Henry Thompson shares some beginner resources that had an impact on his journey to learning to become a better Modern Web developer. By Henry Thompson It doesn’t take any…

There's another way.

Microservices Series #5: Beware best practices

mm by Modern Web

…will always be successful. Within the bestpractice paradigm, project failure is regarded simply as the inadequate application of best practices. Thus, best practices claim to provide predictive power; the better…

2013 – The Year in Web Development

by Brian Rinaldi

…your disposal for code linting, file concatenation, automated unit testing, etc. It has basically become the de-facto standard for every client-side web developer looking to adopt best practices. Raymond Camden…

2014 – What Web Developers Will Need to Know

by Brian Rinaldi

…As we begin to hone in on performance in web applications, we’re learning that modifying the DOM tree is costly. Reactive JavaScript frameworks like ReactJS are introducing new ways to…

Creating Sound with the Web Audio API and Oscillators

by Brian Rinaldi

…Obadiah Metivier Phase Offsets With Web Audio WaveTables by Nick Thompson Web Audio References Web Audio API at MDN Web Audio API at WebPlatform.org Other Libraries webaudiox (tutorial) jsfx…

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…

Testing Web Apps from the Ground Up

by Brian Rinaldi

…true); request.send(); }; })(this); Below is the server-side JavaScript. It is run in Node.js. Near the bottom, the code uses the Node HTTP module to create a web server. It…

5 Key Aspects to Consider in Redesigning Websites

by Keval Padia

…the solution to take these websites to an at par level with modern websites with latest web design and development attributes. Let us introduce here 5 key considerations in redesigning…

Best of JavaScript, HTML & CSS – 2013

by Brian Rinaldi

Best Practice Mentalities to Get Over How to convert your dynamic site to static but keep important dynamic elements like comments, calendars and more by Raymond Camden. Moving to Static…

Modern Web Best Practice: Build Tools

by Aaron Bushnell

…as: var gulp = require(‘gulp’), coffee = require(‘gulp-coffee’), concat = require(‘gulp-concat’), uglify = require(‘gulp-uglify’); gulp.task(‘scripts‘, function() { return gulp.src(‘js/*.coffee’) .pipe(coffee()) .pipe(uglify()) .pipe(concat(‘all.min.js‘)) .pipe(gulp.dest(‘build/js‘)); }); You can see from the example…