JavaScript for Line of Business Applications
596.5K 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: 'Meteor'. Clear
Scoop.it!

Easy and Simple Meteor JS Blog Tutorial: No Packages, pure Meteor.

The most simple example tutorial showing how to make a real-time, reactive, responsive, and awesome easy blog with Meteor JS web framework.

No comment yet.
Scoop.it!

How to organize your Meteor.js app

How to organize your Meteor.js app | JavaScript for Line of Business Applications | Scoop.it

From a high level, Meteor.js gives you four folders that are treated special by the build tool: client, public, server, and test. Anything not in those special folders will be compiled by the build tool and sent to both the client and the server. This is where guidance from the Meteor Development Group stops.

No comment yet.
Scoop.it!

Discovering Meteor with David Burles

Discovering Meteor with David Burles | JavaScript for Line of Business Applications | Scoop.it

Discovering Meteor with David Burles


* Publishing data from an external API
* Publishing anything
* Random
* An interview with Arunoda
* Incoming
* Publications for authenticated users
* Understanding spacebars
* Joining on the client
* Simple modal pattern
* Project structure
* Simple search pattern

No comment yet.
Scoop.it!

Taking Meteor Apps Into Production with Modulus, Compose, and Codeship

Taking Meteor Apps Into Production with Modulus, Compose, and Codeship | JavaScript for Line of Business Applications | Scoop.it

Exploring continuous integration and scalable hosting for Meteor projects.

I’m going to focus on one setup that has worked well for projects I’ve worked on and that I know other production Meteor apps are using. The setup described here uses ModulusCompose, and Codeship. Leveraging these services has the advantage of keeping deployment and hosting simple, so developers can focus on building their app and spend less time on server configuration and ops work.

No comment yet.
Scoop.it!

Acceptance testing of Meteor Application using Selenium-Nightwatch and Velocity

Acceptance testing of Meteor Application using Selenium-Nightwatch and Velocity | JavaScript for Line of Business Applications | Scoop.it

I started by reading the documentation at the Github page of the Selenium-Nightwatch project and tried to install the package according to following instructions from the author. This is where my problems begun, since author stressed that it is required to run meteor with administrator privileges, what completely messed up build of all my packages and from this moment on I had to run all my meteor projects with administrator privileges. I shrieked in horror. 

Dukas Ferkas's comment, August 17, 2014 11:07 AM
I love to use this and to get the Dragon City hack from here http://juicyhacks.com/dragon-city-hack-dragon-city/ it is very simple and easy
Scoop.it!

Meteor is F***ing Awesome

Meteor is F***ing Awesome | JavaScript for Line of Business Applications | Scoop.it

Meteor blurs the line between client and server, and actually takes advantage of the fact that it’s all Javascript. Methods are functions that can be invoked from the client, the server, or both. With Meteor, you’re actually sharing big chunks of code between the client and server. While it’s possible to do something similar using ember/node, it’s difficult enough that most people don’t do it. This really changes how you build things. More client/server sharing = less code = less work and fewer errors.

Henrik Våglin's curator insight, August 17, 2014 7:40 AM

Yes it is, but I'll waiting for a 1.0 release before I'll take a serious look myself...

Scoop.it!

Build a Shopping Cart with MeteorJS

This 53 minute tutorial takes you through the steps of building a 3 column storefront with a categorized product list and a small shopping cart. Enjoy.

Jan Hesse's insight:

code: https://github.com/mcknightg/meteorshop

No comment yet.
Scoop.it!

Does Meteor deliver?

Does Meteor deliver? | JavaScript for Line of Business Applications | Scoop.it

My plan was initially quite complicated, but i took a step back in the planning phase and set myself a first goal: the app must be simple. Like first Twitter was simple. Only implement basic functions and make it usable. It was going to be a place where you can ask questions, with a fixed number of answers, and other people could answer them anonymously. It would not need images (except kittens) and will have the smallest number of pages possible.

No comment yet.
Scoop.it!

Programming in the Reactive Style with Meteor JS

Meteor allows you to quickly create new web applications. Using a single code base for the client and the server, no-sql mongo, template-oriented UX organization and painless deployment, designing and developing with Meteor is fun. But the real game changer is Reactivity. 

No comment yet.
Scoop.it!

free ebook: Your First Meteor Application

free ebook: Your First Meteor Application | JavaScript for Line of Business Applications | Scoop.it

A Complete Beginner's Guide to Meteor.js

Are you a beginning developer eager to learn how to build web applications with the Meteor JavaScript framework? This is the book for you.


Your First Meteor Application is not a definitive guide to Meteor. You won't be a full-fledged developer by the final page. You will, however, understand the core concepts that will make your future education in Meteor a lot more approachable.

No comment yet.
Scoop.it!

Hello Meteor - a journey to the core of meteor

Hello Meteor - a journey to the core of meteor | JavaScript for Line of Business Applications | Scoop.it

As I continue to create more applications with Meteor, there are some details about the framework that I wanted to learn more about in order to become a better meteor developer. I went looking to have my questions answered and here is what I found...

No comment yet.
Scoop.it!

Rapid Mobile Development with Meteor.js

Tower’s CTO, Andrew Reedy will give a brief overview of how to take advantage of the realtime javascript platform Meteor.js for quickly developing database everywhere, scaleable web applications. He explains how to set up Meteor with Cordova and also Famo.us. Tower is a San Diego based startup and mobile application that connects people inside of residential towers, office buildings, and what they call temporary towers (resorts, cruise ships, conferences.) See how Tower takes advantage of a modern stack including Meteor, MongoDB, Cordova, Redis, ElasticSearch, Docker, and CoreOS to scale their mobile app..

No comment yet.
Scoop.it!

Two-Way Data Binding

Two-Way Data Binding | JavaScript for Line of Business Applications | Scoop.it

Let’s build a temperature converter app in Backbone, React, Angular, Meteor and vanilla JavaScript.

Vanilla JS is our baseline. Input values are synchronised using two event handlers, one on each input field.

Jan Hesse's insight:

https://news.ycombinator.com/item?id=7887852

No comment yet.
Scoop.it!

How to optimize your Mongo database for Meteor.js

How to optimize your Mongo database for Meteor.js | JavaScript for Line of Business Applications | Scoop.it

Kadira. The amount of insight and analytics you get from Kadira is worth every penny, especially when you are trying to optimize for production. Once I installed and deployed the app with Kadira in it, the app started sending back the metrics from the running meteor app.

As I've said before, publications are the life blood of your meteor app. I started by going to the Pub/Sub detailed tab in Kadira and switched to sort by response time. I quickly noticed that one publication had the second highest subscribe rate and an average response time of 2171ms - that signaled a pretty big bottleneck for me.

No comment yet.
Scoop.it!

How to scale a meteor.js app

How to scale a meteor.js app | JavaScript for Line of Business Applications | Scoop.it

Meteor is a little different than traditional 'static html' frameworks. The Meteor platform uses things like web sockets, DDP, and a pub/sub model to get data in the right spot. That means we can't just throw varnish in front of an app and get our 'magic scaling beans'.

No comment yet.
Scoop.it!

21 Meteor Tipps and HowTos

21 Meteor Tipps and HowTos | JavaScript for Line of Business Applications | Scoop.it

#21: Pagination System with Infinite Scroll
#20: Verify an Email with Meteor Accounts
#19: Deploying Your Applications in a Snap with Meteor-Up (MUP)
#18: Add Google Adsense to Your Application
#17: Using NPM Modules in your Application
#16: How to Use Jade in Your Application
#15: Load a Library for Specific Users
#14: Execute a UNIX Command
#13: Managing User Roles
#12: The Complete Guide to SEO
#11: Iron Router CheatSheet
#10: Set up Oplog Tailing on Ubuntu
#9: Internationalization (i18n)
#7: Must-Watch Videos
#6: Reactive and Nonreactive Join with MongoDB - 4 Examples
#5: CheatSheet
#4: Best Ressources to Become a Master
#3: SMTP Configuration
#2: Build a Complete Registration System
#1: Deploy and Manage a Meteor Application on Ubuntu with Nginx

No comment yet.
Scoop.it!

Meteor #16: How to Use Jade in Your Application

Meteor #16: How to Use Jade in Your Application | JavaScript for Line of Business Applications | Scoop.it

This Meteor smart package provides support for the Jade template engine as a Spacebars alternative. Spacebars and Jade packages can coexist, Spacebars will continue to compile files ending with .html and Jade will take care of those ending with .jade.

No comment yet.
Scoop.it!

Creating and testing Meteor applications with BDD using Velocity and Jasmine

Creating and testing Meteor applications with BDD using Velocity and Jasmine | JavaScript for Line of Business Applications | Scoop.it
In this tutorial, I would like to present how to safely develop Meteor application using Behaviour Driven Development (BDD), using the new Velocity framework and Jasmine test suite. This tutorial a...
No comment yet.
Scoop.it!

Meteor Beginner Tutorial

Meteor Beginner Tutorial | JavaScript for Line of Business Applications | Scoop.it

I’ve been talking a lot about how Meteor is awesome. I wrote some posts and you could read about it here: Why Beginners Should Start With Meteor and Reasons 4 Meteor. Now that I’ve been advocating you to try Meteor, let us build a Grocery List app.

No comment yet.
Scoop.it!

10 Reasons to start using Meteor today

10 Reasons to start using Meteor today | JavaScript for Line of Business Applications | Scoop.it
Meteor is the new isomorphic JavaScript framework that will make developer's lives so much easier and make users fall in love with your app again. I recently published a rather sarcastic article based on all the FUD I have been hearing the last couple of weeks about what I believe...
No comment yet.
Scoop.it!

Meteor.js: Killing Dinosaurs with JavaScript

Meteor makes it dead simple to write real-time JavaScript applications. Real-time applications that update all content for all users all the time. No waiting. No hassles. And we'll use it to live-code an application -- one that kills dinosaurs -- which we will then live-deploy so everyone can help.

No comment yet.
Scoop.it!

Isomorphic JavaScript – Build awesome webapps with the best of two worlds

Isomorphic JavaScript – Build awesome webapps with the best of two worlds | JavaScript for Line of Business Applications | Scoop.it

With the raising of modern rich web applications it’s getting more and more important to improve the speed and the interactivity of mobile web applications. People are spoiled of native applications and compare the experiences of both worlds to each other. After several years of static web pages with thin client and fat server architecture the architecture switched to rich client architecture some years ago. This was definitely owed to the raise of Model View Controller JavaScript Frameworks like Backbone.js or AngularJS which made it possible to implement structured single page applications. 

No comment yet.
Scoop.it!

Journey into Meteor's Reactivity

Journey into Meteor's Reactivity | JavaScript for Line of Business Applications | Scoop.it

Meteor is a full-stack JavaScript framework. It runs on both the client and the server. The client communicates with the server using a protocol called DDP.

As I said before, some people think Meteor generates codes on the fly or does some magic behind the scenes. But it does not. It’s a combination of carefully crafted technologies built into a single framework. It’s extensible and very easy to use.

No comment yet.
Scoop.it!

Best Learning Resources for Meteor.js

Best Learning Resources for Meteor.js | JavaScript for Line of Business Applications | Scoop.it

It’s been over a year that I compiled a list of the best resources to learn the JavaScript framework Meteor.js and back then it was hard to come by any good reading material on the subject. Fortunately, this has changed quite a bit recently, which is why I decided to give this list a complete makeover. Since there has been a lot of change on the road to 1.0 some previously listed resources became outdated, so they were removed from this compilation. But you probably came here to get some inspiration on how to learn Meteor, so don’t let me waste any more of your precious time and get right to the point.

No comment yet.
Scoop.it!

meteor-persistent-session: store session variables in localStorage

meteor-persistent-session: store session variables in localStorage | JavaScript for Line of Business Applications | Scoop.it

Make Meteor's Session object persist its values locally and across page refreshes. Meteor's default implementation loses values whenever the page is refreshed.

Uses amplifyjs's store library to save values in the browsers localStorage, falling back to other solutions if it's not available.


No comment yet.