JavaScript for Line of Business Applications
596.1K views | +0 today
Follow
JavaScript for Line of Business Applications
Keeping track of current JavaScript Frameworks that help design your clientside Business Logic Layers.
Curated by Jan Hesse
Beam to my Inbox:
Your new post is loading...
Your new post is loading...

Popular Tags - Filter using the Funnel

Scoop.it!

Introducing Electrode, an open source application platform powering Walmart.com

Introducing Electrode, an open source application platform powering Walmart.com | JavaScript for Line of Business Applications | Scoop.it

80 million monthly visitors, loads up to 10,000 requests per second, and 15 million items, adding more than one million new items each month is what Walmart.com’s scale is all about. With an e-commerce business that holds the number two online retailer spot in the U.S., we needed not just to scale Walmart.com, but to really leverage the talent and creativity of our engineering base.

No comment yet.
Scoop.it!

Build a MobX Example App in 4 Steps

Build a MobX Example App in 4 Steps | JavaScript for Line of Business Applications | Scoop.it
In this blog I will show you how to pick up an existing codebase example and curtail it into your own, beautiful MobX Example App built using React, MobX and the Cosmic JS API to create and remove…
No comment yet.
Scoop.it!

React’s Component Lifecycles – MoFed

React’s Component Lifecycles – MoFed | JavaScript for Line of Business Applications | Scoop.it
React’s rendering method enables users to work with a virtual DOM. This type of DOM rendering can cause issues when it comes to accessing the browser DOM and utilizing new props in specific ways. So…
No comment yet.
Scoop.it!

Getting Started with Node, Express and Postgres Using Sequelize

Getting Started with Node, Express and Postgres Using Sequelize | JavaScript for Line of Business Applications | Scoop.it

We're going to be using PostgreSQL and Sequelize as the ORM of choice to write a minimalistic Todo list application.

By the end of this tutorial, we will have created an API for a todo list application that will enable us to create multiple todos, add list items to those todos, update the list items and delete them. By working through an application in which we implement functionality to add things, update and delete them from a database, this tutorial will serve as an introduction to writing more advanced CRUD applications.

No comment yet.
Scoop.it!

Server-Side Rendering in Angular 2 with Angular Universal

Server-Side Rendering in Angular 2 with Angular Universal | JavaScript for Line of Business Applications | Scoop.it

The conventional server rendering solution has saved us for years with Angular 1 by provisioning web crawlers with our actual content. That seemed to keep us happy but we were missing one thing -- state.

The Universal idea is to build an app that does not just render to server but also runs on the server. Running in the sense that our state, content and styles are intact on the client and the server as well. In Angular 2, this is achieved with the help of Angular Universal which loads our app on the server first, and then drops it to the browser once ready.

No comment yet.
Scoop.it!

Building Tesla's battery range calculator with Angular 2 reactive forms

In this epic tutorial, we’re going to build some advanced Angular 2 components that rebuild Tesla’s battery range calculator and then compile it to AoT and deploy on GitHub pages. We’ll be using the reactive forms API as well and building custom form controls and use some stateful and stateless component practices, as well as change detection strategies.

This is the final project gif of what we’re about to build:

No comment yet.
Scoop.it!

JavaScript Clean Coding Best Practices - Node.js at Scale

JavaScript Clean Coding Best Practices - Node.js at Scale | JavaScript for Line of Business Applications | Scoop.it
This post covers general clean coding guidelines for naming and using variables & functions, as well as some JavaScript specific clean coding best practices
No comment yet.
Scoop.it!

TypeScript Deep Dive

TypeScript Deep Dive | JavaScript for Line of Business Applications | Scoop.it

I've been looking at the issues that turn up commonly when people start using TypeScript. This is based on the lessons from StackOverflow / DefinitelyTyped and general engagement with the TypeScript community.

No comment yet.
Scoop.it!

Tips for using async functions (ES2017)

Tips for using async functions (ES2017) | JavaScript for Line of Business Applications | Scoop.it

The foundation of async functions is Promises. That’s why understanding the latter is crucial for understanding the former. Especially when connecting old code that isn’t based on Promises with async functions, you often have no choice but to use Promises directly.

No comment yet.
Scoop.it!

Angular 2 best practices: Change detector performance

Angular 2 best practices: Change detector performance | JavaScript for Line of Business Applications | Scoop.it
Follow these Angular 2 best practices to eliminate needless change detection, making your web app faster and cleaner.

In order to guarantee that the DOM always shows the very latest available data, Angular monkey-patches every entry point to running Javascript with a Zone. So any time Javascript finishes executing—meaning an AJAX request completes, a click event handler runs, or a Promise is fulfilled—Angular 2 checks whether any changes have occurred that would affect the DOM.

No comment yet.
Scoop.it!

Building Angular 2 Components on the Fly: Dialog Boxes

Building Angular 2 Components on the Fly: Dialog Boxes | JavaScript for Line of Business Applications | Scoop.it
There's no recipe for building dynamic Angular 2 components on the fly, but that doesn't mean it can't be done. Here's our solution.

A dialog box is a good example of an Angular 2 component you may want to build on the fly. If your application has a fair number of them, and you feel put out at the thought of writing one large ngSwitch, then building them dynamically is a good alternative.

No comment yet.
Scoop.it!

How to build the SPA for enterprise application using Angular2 and ASP.Net WebApi

How to build the SPA for enterprise application using Angular2 and ASP.Net WebApi | JavaScript for Line of Business Applications | Scoop.it

Some highlight technologies:

  • Angular2 (typescript)
  • WebApi (RESTful)
  • Entity Framework
  • Bootstrap
  • IoC
  • Multi-Layer architecture
  • Modular your Application
  • Multi Languages
  • Design Pattern (Unit Of Work, Repository, …)
  • SOLID principle
  • Gulp
  • NodeJs
No comment yet.
Scoop.it!

A clear convention for a CRUD with standard Ember + Ember Data

Ember's official documentation describes a number of low-level APIs, but doesn't talk much about how to put them together. As a result, a simple task such as creating a simple CRUD application is not obvious to a newcomer.

To help solving this problem, I decided to figure out and document a clear convention for simple CRUD apps, using Ember and Ember Data with no third-party add-ons.

No comment yet.
Scoop.it!

A complete guide to Ember - Ember.js Tutorial

A complete guide to Ember - Ember.js Tutorial | JavaScript for Line of Business Applications | Scoop.it

Why Ember.js?

  • Convention over configuration. It reduces the configuration related codes like anything.
  • Much better data change observing mechanism than angular.js like frameworks.
  • A priority based run loop, who decides which task to run first.
  • Built in architecture (with ember cli) has its own advantages. Easier to shuffle developers across teams.
  • ES6 syntaxes. Modern technology.
  • Huge community. Ember even has npm like emberobserver.
No comment yet.
Scoop.it!

Immutable libraries and TypeScript

Immutable libraries and TypeScript | JavaScript for Line of Business Applications | Scoop.it
I have been researching immutable libraries, and found many of them on redux-ecosystem-links. Following are the problems I found with them: To address above issues, I have made another library…
No comment yet.
Scoop.it!

Real-World ReactJS and Redux, Part 1

Real-World ReactJS and Redux, Part 1 | JavaScript for Line of Business Applications | Scoop.it
From real-world ReactJS usage and scaling our app at Threat Stack, we’ve learned that consistent patterns, data structures, and appropriate tools will help you build your larger system. And we avoided magic because it doesn’t scale!
Jan Hesse's insight:

Part 1: http://blog.threatstack.com/real-world-reactjs-and-redux-part-1

Part 2: http://blog.threatstack.com/real-world-reactjs-and-redux-part-2

Part 3: http://blog.threatstack.com/real-world-reactjs-and-redux-part-3

No comment yet.
Scoop.it!

Reactivity in Frontend JavaScript Frameworks

Reactivity in Frontend JavaScript Frameworks | JavaScript for Line of Business Applications | Scoop.it
With today’s modern JavaScript frameworks, we are used to the fact that when the application state changes, the DOM is updated automatically. But how do the frameworks detect state changes, and how do they efficiently propagate the changes through the system? Evan answers these questions based on his experience building Vue.js.
Yu PANG's curator insight, December 27, 2016 6:58 AM
Share your insight
Scoop.it!

Will WebSocket survive HTTP/2?

HTTP/2 is poised to eliminate much of the waste that developers deal with. Multiplexed connections will eliminate the need to bundle JavaScript libraries together. But is HTTP/2 a panacea to all our problems? What about WebSocket? Allan Denis tells us what HTTP/2 is good at and debunks some myths about what it can do.
No comment yet.
Scoop.it!

Recycle — Truly Functional and Reactive way of writing React apps

Recycle — Truly Functional and Reactive way of writing React apps | JavaScript for Line of Business Applications | Scoop.it

One of the most popular FRP JavaScript framework today is — Cycle.js.

Although, Recycle uses React, its actually inspired with Cycle.js. Recycle initial version had nothing to do with React and was made as an “opinionated version of Cycle.js”.

But, as it turns out, defining components composed of a view, actions and functions responsible for modifying state is a model that can be described without the use of the main function, drivers or complex stream manipulations.

No comment yet.
Scoop.it!

Totally Tooling Tips with Addy Osmani & Matt Gaunt - YouTube

In 'Totally Tooling Tips' web developers Matt and Addy discuss the latest topics, issues and work arounds for building apps and libraries to help mop up your Totally Tooling Tears.

No comment yet.
Scoop.it!

JavaScript Promises for Dummies

JavaScript Promises for Dummies | JavaScript for Line of Business Applications | Scoop.it

Javascript Promises are not difficult. However, lots of people find it a little bit hard to understand at the beginning. Therefore, I would like to write down the way I understand promise, in a dummy way.

No comment yet.
Scoop.it!

Angular 2 and Observables: Data Sharing in a Multi-View Application

Angular 2 and Observables: Data Sharing in a Multi-View Application | JavaScript for Line of Business Applications | Scoop.it
Learn the benefits Observables can provide when you are developing complex web applications.

While a Promise represents a value to be resolved in future, an Observable represents a stream of values throughout. An Observable may be completed, which means it won’t emit any further values. An Observer subscribes to these Observables. These Observers are essentially callbacks to emissions of the Observable. This paradigm supports asynchronous operations naturally. In our application, the Angular 2 components have functions which act as Observers, while the data-sharing service can act as an Observable.

No comment yet.
Scoop.it!

Angular 2 Form Validation

Angular 2 Form Validation | JavaScript for Line of Business Applications | Scoop.it

In this tutorial we are going to look at what’s changed with forms and more importantly how to handle form validation the right way with Angular 2.

Angular 2.x aims to make the creation and validation of forms simple, intuitive, and manageable.

 

No comment yet.
Scoop.it!

Multifactor Authentication in your React Apps

Multifactor Authentication in your React Apps | JavaScript for Line of Business Applications | Scoop.it

Security can't be overemphasized when it comes to developing software applications. A single authentication factor system (e.g username and password) is no longer safe enough. If credentials are stolen, a user can be impersonated. Implementing a multi-factor authentication system increases security by requiring the user to provide an additional sets of credentials before they are granted access.

Implementing multi-factor authentication can be time-consuming, challenging, and often difficult to get right. However, in this post I'll show you how to quickly implement multi-factor authentication in your React applications in just a few minutes without breaking a sweat!

No comment yet.
Scoop.it!

Next.js - A minimalistic framework for universal server-rendered React applications

Next.js - A minimalistic framework for universal server-rendered React applications | JavaScript for Line of Business Applications | Scoop.it

We're very proud to open-source Next.js, a small framework for server-rendered universal JavaScript webapps, built on top of React, Webpack and Babel, which powers this very site!

Yu PANG's curator insight, November 21, 2016 9:20 AM
Next.js - A minimalistic framework for universal server-rendered React applications