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: 'MongoDB', 'Tutorial'. Clear
Scoop.it!

React Tutorial using MERN stack

React Tutorial using MERN stack | JavaScript for Line of Business Applications | Scoop.it

This is a step-by-step tutorial that will help you get up to speed with React quickly, and also build a complete app with the MERN (Mongo-Express-React-Node) stack. You'll also learn other tools that you typically use to build an app: Gulp, Browserify, Material-UI and React-Bootstrap.

Scoop.it!

Working with Ember Data, Node, Express and MongoDB

Working with Ember Data, Node, Express and MongoDB | JavaScript for Line of Business Applications | Scoop.it
A simple tutorial for working with Ember Data, Node, Express and MongoDB to build an api.

I have really been enjoying working with EmberJS lately, once you get over the learning curve and understand how things should relate, it becomes really fast and fun!

Lets take a look at how we can use Ember Data with Node (or io.js),Express and MongoDB. For this example lets use the Ember CLI to start an Ember application fast!

No comment yet.
Scoop.it!

Create a REST Backend For Ember.js With Node.js, Express, and Mongoose

Create a REST Backend For Ember.js With Node.js, Express, and Mongoose | JavaScript for Line of Business Applications | Scoop.it
Learn how to create a Emberjs and Ember-cli compatible REST API using Node.js, Express, and Mongoose....

The express-generator is great; however, it added a couple of things we will not be needing so we will remove them now. I am removing the following because this server will only be used as an API and it will not serve a frontend, you do not need to remove them but they are not in the scope of this tutorial.

Jan Hesse's insight:

Part 2:

http://connorbrewster.me/rest-ember-relationships/

No comment yet.
Scoop.it!

RFID-based Asset Tracking with Node.js and MongoDB

RFID-based Asset Tracking with Node.js and MongoDB | JavaScript for Line of Business Applications | Scoop.it

As the title states, we are going to discuss how to build an RFID-based asset tracking system using popular open source tools like Node.js and MongoDB. For the sake of simplicity, let’s start with a very basic model of a system addressing only a general concern of getting some information from RFID hardware and putting it in the database. Of course, in real life we would have to think about many details and additional components to take into account security, bandwidth consumption, monitoring, etc., but let us forget about it all for now and get back to these aspects in our future posts.

No comment yet.
Scoop.it!

Node.JS Course Slides

Node.JS Course Slides | JavaScript for Line of Business Applications | Scoop.it

Writing server side code in JavaScript is easier than ever with Node.JS. Combined with MongoDB, you can build a full featured server and database for your application on the cloud in the same programming language you know and love.

In this course we learn Node.JS from the ground up, starting with the basic Node.JS capabilities, and moving on to web applications using express framework. We later continue to talk about data storage in the popular and simple NoSQL database: MongoDB.

Course Duration: 2 Days (16 Hours).

No comment yet.
Scoop.it!

Real-Time Web Communications In Action

Real-Time Web Communications In Action | JavaScript for Line of Business Applications | Scoop.it

In this example, we look at how real-time Web communications can work well with a non-blocking JavaScript back-end server and a NoSQL database. Our demo is a simple drawing app.

If all you use is WebSocket with simple pub-sub messaging, you can already achieve pretty amazing things with drawing. For example, you can share a drawing board among multiple browser clients and while viewing each other’s drawings in real time.

No comment yet.
Scoop.it!

Single Page Application with Angular.js, Node.js and MongoDB (MongoJS Module)

Single Page Application with Angular.js, Node.js and MongoDB (MongoJS Module) | JavaScript for Line of Business Applications | Scoop.it

Current post is a proof of concept towards make a web application with Javascript based Web Server.

To make this possible, we have selected -

1> Angular.js for client side development – Single Page Application

2> Cross Domain Communication in between Angular.js and Node.js

3> Node.js for server side development

4> Rest based web service creation with express.js

5> Database – MongoDb

6> Node.js MongoDb Module Extention (mongojs)

We have created a Proof of Concept with Javascript based web server, where we have focused on dealing with NoSql (MongoDB) with javascript based framework Node.js and angular.js on client side.

No comment yet.
Scoop.it!

Learn to Build Modern Web Apps with MEAN

Learn to Build Modern Web Apps with MEAN | JavaScript for Line of Business Applications | Scoop.it

The goal of this tutorial is to guide you through the creation of a Reddit/Hacker News clone using the MEAN stack. By completing this tutorial, you will gain a basic understanding of the MEAN stack including building a REST interface with Express.js on top of Node.js and using that interface to perform CRUD operations on a database via an AngularJS frontend.

No comment yet.
Scoop.it!

Building a Meteor.js mobile app with Cordova, MongoDB, and Ratchet

Join Josh Owens as he builds a Meteor.js app from scratch using Ratchet, Cordova, and MongoDB.
No comment yet.
Scoop.it!

A Simple CRUD with MEAN Stack (MongoDB, ExpressJS, AngularJS, Node.js) + Sails.js on Windows

MEAN stack is a full JavaScript solution that helps you build fast, robust and maintainable production web applications using MongoDB, ExpressJS, AngularJS and Node.js.
Sails.js allows you to build custom, enterprise-grade Node.js apps using the Model-View-Controller pattern to organize your code so it is easier to maintain.
New MEAN Stack = MongoDB+ExpressJS+AngularJS+Node.js+Sails.js = MEANS stack

No comment yet.
Scoop.it!

Creating a Simple RESTful Web App with Node.js, Express, and MongoDB

Creating a Simple RESTful Web App with Node.js, Express, and MongoDB | JavaScript for Line of Business Applications | Scoop.it

ou're going to need to know how to get a webserver running with Express, and how to use app.get and app.post to communicate with both the server and the database. It's all covered in that original tutorial, and if you're a developer who's familiar with JavaScript, it's not hard.

Back? … or rolling your eyes and going, “dude, I already know that stuff”? Either way, great! Let's add some new tools to our toolbox, and create a simple little app that works without a single page refresh.
Here are the goals:
* Learn what REST means in plain English
* Store and retrieve JSON data in a MongoDB collection using HTTP POST and HTTP GET
* Remove data from the collection using HTTP DELETE
* Use AJAX for all data operations
* Update the DOM with jQuery


PART 1 - SERIOUSLY, WHAT THE HELL IS REST?
PART 2 - SETUP
PART 3 - STARTING IN ON HTML
PART 4 - THE DATABASE
PART 5 - LISTING USERS
PART 6 - POPULATING USER INFO
PART 7 - ADDING USERS
PART 8 - DELETING USERS
CONCLUSION

No comment yet.
Scoop.it!

Contact Manager – written in AngularJS, Express and MongoDB – Episode 1

Contact Manager – written in AngularJS, Express and MongoDB – Episode 1 | JavaScript for Line of Business Applications | Scoop.it

I thought the easiest way to learn more about AngularJS, Express and MongoDB would be to create a contact manager, where you can list/search/query your contacts and view more information about them.

There will be two parts to this article, part one is where I’m going to discuss the backend bit – that is the part which produces the JSON data from MongoDB, and the second part will discuss the frontend elements, running an Express server with AngularJS. Let’s start by discussing the database portion.

No comment yet.
Scoop.it!

Web Application with Highchart.js, Node.js, Express.js and MongoDB (Mongo-JS Module)

Web Application with Highchart.js, Node.js, Express.js and MongoDB (Mongo-JS Module) | JavaScript for Line of Business Applications | Scoop.it

This application is another proof of concept towards make a web application for graph generation with Javascript based Web Server.
In this application we have used following tools and technologies -
1> Node.js for server side development
2> Rest based web service creation with express.js
3> Database – MongoDb
4> Node.js MongoDb Module Extention (mongojs)
5> Highchart.js for Graph generation through Asynchronous call (Ajax)
6> Using Cross-Domain policy to access REST service from Node.js to Ajax Call
We have created a Proof of Concept with Javascript based web server, where we have focused on dealing with NoSql (MongoDB) with javascript based framework Node.js.

No comment yet.