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

Current selected tag: 'deployment'. Clear
Scoop.it!

Building a JavaScript Library with Grunt.js

Building a JavaScript Library with Grunt.js | JavaScript for Line of Business Applications | Scoop.it

A new release of a typical, non-trivial JavaScript project needs to run unit tests, concatenate all source files into one file and minify the result. Some of them also use code generators, coding style validators or other build time tools.

This post explains how to use Grunt.js to build JavaScript library. Grunt.js requires Node.js and npm to run, so first sections explain what those are, how to install them and how to use them. You can feel free to skip those sections if you have already worked with npm. The fourth and fifth sections cover how to configure Grunt and a number of typical Grunt tasks.

No comment yet.
Scoop.it!

Full-Spectrum Testing with AngularJS and Karma

Full-Spectrum Testing with AngularJS and Karma | JavaScript for Line of Business Applications | Scoop.it
Learn how to fully test your AngularJS application with Karma in every possible area using E2E, Unit and Midway testing

 

How do you setup your test environment? How should you organize your code? How do you setup a runner and how to automate the process? The bigger question is how do you usually test your JavaScript code?

You may also be wondering what exactly to test in your application? What should my tests really look for? How should I write my specs? As you can see there are many questions to answer.

It doesn't take much time to realize that testing JavaScript is difficult and finicky. However, if you wish to get arobust understanding of how to properly test your JavaScript code within your AngularJS application, then continue and read along... :)

No comment yet.
Scoop.it!

Brunch | HTML5 application assembler

Brunch | HTML5 application assembler | JavaScript for Line of Business Applications | Scoop.it

Brunch is an assembler for HTML5 applications. It‘s agnostic to frameworks, libraries, programming, stylesheet & templating languages and backend technology.

To simplify app development, brunch watches your files for changes and automatically wraps your scripts and templates in common.js modules. All build errors are printed to console.

No comment yet.
Scoop.it!

Single Page JavaScript Application Workflow with GruntJS

Single Page JavaScript Application Workflow with GruntJS | JavaScript for Line of Business Applications | Scoop.it

I started playing around with creating a workflow for creating single page applications with JavaScript. The big player in this workflow is GruntJS. In this Single Page JavaScript Application Workflow Tutorial I will explain how to setup a build process for your development and production environment. We will be using several GruntJS plugins to help us.

No comment yet.
Scoop.it!

Automating AngularJS With Yeoman, Grunt & Bower

Automating AngularJS With Yeoman, Grunt & Bower | JavaScript for Line of Business Applications | Scoop.it

In this post I will show you how you can use an amazing set of tools and libraries to help speed up development of AngularJS applications. We will use Yeoman to generate the project/files for us andGrunt to automate tasks such as running the server/tests. Bower is a package manager for the web and please be aware I don’t go so much into Bower as the other tools take up a lot of the post already, just know what it does and that it’s pretty cool. Please keep in mind that all these tools do so much more so read their documentation and get a full grasp of their capabilities.

No comment yet.