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 tags: 'AngularJS', 'PHP'. Clear
Scoop.it!

The Login Page: Angular JS and Spring Security Part II

The Login Page: Angular JS and Spring Security Part II | JavaScript for Line of Business Applications | Scoop.it
In this article we continue our discussion of how to use Spring Security with Angular JS in a “single page application”. Here we show how to use Angular JS to authenticate a user via a form and fetch a secure resource to render in the UI. This is the second in a series of articles, and you can catch up on the basic building blocks of the application or build it from scratch by reading the first article, or you can just go straight to the source code in Github. In the first article we built a simple application that used HTTP Basic authentication to protect the backend resources. In this one we add a login form, give the user some control over whether to authenticate or not, and fix the issues with the first iteration (principally lack of CSRF protection).
No comment yet.
Scoop.it!

PHANG web application boilerplate

PHANG web application boilerplate | JavaScript for Line of Business Applications | Scoop.it
PHP and AngularJS Apps Made Easy: Everything you need to kickstart AngularJS projects: a best-practice directory structure, an intelligent build system, and the best web design libraries around.

PHANG uses Silex, a PHP microframework for PHP 5.3. It is built on the shoulders of Symfony2 and Pimple and also inspired by sinatra.

No comment yet.
Scoop.it!

Create a "load more" widget using AngularJS, Ajax and Bootstrap 3

Create a "load more" widget using AngularJS, Ajax and Bootstrap 3 | JavaScript for Line of Business Applications | Scoop.it

Step 1: Getting the data ready
Step 2: Creating a basic scaffolding
Step 3: Creating a Factory
Step 4: Interacting with the DOM (Document Object Model)

No comment yet.
Scoop.it!

Complete Web Application: Angular Twitter Bootstrap Spring MVC, Data and Security

Complete Web Application: Angular Twitter Bootstrap Spring MVC, Data and Security | JavaScript for Line of Business Applications | Scoop.it

Today we will see how to create a complete Java web application using Spring, Angular, JQuery, Twitter Bootstrap, Tiles, Maven, Tomcat, JPA/Hibernate.

The project that will be done here in this post will be used in another post that I will write, because of this future post, in this post will be described a detailed environment configuration. I will be using linux as my operational system (OS), but almost nothing will change if you use Windows or other OS.

In this post we will see a project using Spring framework with the following modules: Spring MVC, SpringData e Spring Security. We will see how to do internationalization (i18n) with SpringMVC and templates with Tiles framework.

Postgre will be the database used here, but if you want use it with MySQL just add the MySQL jar to the project and change some configuration. In this post will be displayed both Postgre and MySQL configurations.

What we will see in here:

Page 02: Environment Setup
Page 03: Creating the project
Page 04: Understanding the “pom.xml”, “log4j.xml” and the “context.xml” files
Page 05: Creating the Spring and the project XMLs
Page 06: Tiles – Page templates
Page 07: Project Model Classes
Page 08: Using SpringData as Repository (DAO); creating User Service
Page 09: Using SpringData as Repository (DAO); creating Contact Service
Page 10: Creating the Controllers
Page 11: Using Restful approach with SpringMVC
Page 12: Understanding the Login, SpringMVC Interceptor and the Security Rules
Page 13: First Contact with Angular.js and the SpringMVC
Page 14: Using Angular.js bind in a HTML table
Page 15: Internationalization (i18n) with Spring
Page 16: Understanding the Twitter Bootstrap role
Page 17: Running the project

Leonardo Cortes Ponce's curator insight, August 5, 2014 11:32 AM

Excelente mini curso de Java Spring MVC con BootStrap 

Siófok Buli's curator insight, November 28, 2017 12:02 PM
yes
Scoop.it!

Building a RESTful Application With PHP & MongoDB - Part 1

Building a RESTful Application With PHP & MongoDB - Part 1 | JavaScript for Line of Business Applications | Scoop.it

So, What are the things we gonna see...

  • Updated structuring for AngularJS
  • Making an RESTFUL API Call
  • Use of AngularJs Resource
The example tutorial is simple 'yet another blog' stuff, now we are only going to see how to make the API call only and nothing else. (need to go slowly)

Sometime ago, we have learned how to automate stuffs with the help of Yeoman and GruntJs. But, in growing application, we need to properly place certain files in certain places so we can jump to files easily(With the help of Sublime Of course!). 

No comment yet.
Scoop.it!

Laravel 4 with AngularJS Architecture Solution

Laravel 4 with AngularJS Architecture Solution | JavaScript for Line of Business Applications | Scoop.it

This is the overview of solution to developing a web application using AngularJS and Laravel. My aim is to keep the front-end and back-end as separate as possible. I have envisaged a setup which has a somewhat decoupled architecture where the static front-end AngularJS application is completely separate from the resourceful API back-end Laravel application. It’s worth noting I’m using LinemanJS for my front-end development Workflow but this concept could be applied with your own workflow.

This post also addresses problems when trying to inject the CSRF Token without using a HTTP request and SPA HTML5 push state. So hopefully this saves you some head banging.

No comment yet.
Scoop.it!

Create a Laravel and Angular Single Page Comment Application

Create a Laravel and Angular Single Page Comment Application | JavaScript for Line of Business Applications | Scoop.it

Laravel and Angular have both become very well renowned tools in the web development world lately. Laravel for the great things it brings to the PHP community and Angular for the amazing frontend tools and its simplicity. Combining these two great frameworks only seems like the logical next step.
For our use cases, we will be using Laravel as the RESTful API backend and Angular as the frontend to create a very simple single page comment application.
This will be a simple example to show off how to get started using these two technologies so don’t hope for any extra database stuff on how to handle sub-comments or anything like that.

This will be a simple single page comment application:
* RESTful Laravel API to handle getting, creating, and deleting comments
* Angular frontend to handle showing our creation form and the comments
* Ability to create a comment and see it added to our list w/o page refresh
* Ability to delete a comment and see it removed from our list w/o page refresh

Overall, these are very simple concepts. Our focus will be to see the intricacies of how Laravel and Angular can work together.

No comment yet.
Scoop.it!

Single Page Application Boilerplate with AngularJS and Phalcon Micro Framework

Single Page Application Boilerplate with AngularJS and Phalcon Micro Framework | JavaScript for Line of Business Applications | Scoop.it
The web is evolving so quickly.
While web browsers and computers are getting more powerful, architectures which give load to clients are getting popular.

Single Page Application (SPA) idea is one of them. In this post, I’ll setup a simple boilerplate for my future SPA tutorials. I’am going to keep posting about SPAs based on this boilerplate.

No comment yet.
Scoop.it!

Building a RESTful Application With PHP & MongoDB - Part 2

Building a RESTful Application With PHP & MongoDB - Part 2 | JavaScript for Line of Business Applications | Scoop.it

In this tut, we are gonna see how the API stuffs does it work and return backs the response to our blog tut.

So, What are the things we gonna see...

  • What the heck is REST & Why we need to use?
  • Building our Application as RESTFul Service using PHP Slim Framework and storing in MongoDB.
  • Sending back the Response to our AngularJS


Now, you have the idea what is REST thing, the ingredients to make our application are,
  1. PHP Framework, Slim Framework will do (since your app is not that big)
  2. To store our data, we choose Mongo (Read here for more intel)
No comment yet.