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: '.net', 'Node.js'. Clear
Scoop.it!

.NET vs. MEAN: Migrating from Microsoft to Open Source

.NET vs. MEAN: Migrating from Microsoft to Open Source | JavaScript for Line of Business Applications | Scoop.it

Developer Michael Perrenoud describes what it's like for .NET developers who want to explore the MEAN stack -- MongoDB, Expressjs, AngularJS, and Node.js

I was standing in the middle of a matrix I'd avoided for a very long time: Microsoft vs. The World. It was a decision I thought I'd never have to make. Here I was, 33 years old and feeling like a dinosaur. Don't get me wrong, the skill set I had wasn't so out of date that it was already dead, but I could feel the market shifting. I knew that if I didn't make a change, in 10 years, I'd be staring down that same barrel those COBOL friends of mine were right now.

No comment yet.
Scoop.it!

On the Edge of the CLR - use .Net in Node.js

On the Edge of the CLR - use .Net in Node.js | JavaScript for Line of Business Applications | Scoop.it

WHEN NODE.JS IS NOT ENOUGH
* CPU-BOUND WORK
* LEGACY TECHNOLOGY CONSTRAINT
* REUSE EXISTING COMPONENTS
* UTILIZE BETTER IMPLEMENTATION


EDGE.JS CONNECTS
* Node.js and .NET
* cool with awesome
* on Windows, MacOS, and Linux
* IN ONE PROCESS


WHAT WILL YOU BUILD?

No comment yet.
Scoop.it!

Node.js Connect middleware for .NET using OWIN

Node.js Connect middleware for .NET using OWIN | JavaScript for Line of Business Applications | Scoop.it

OWIN itself is not a technology, just a specification to decouple Web applications from the Web server. The goal of connect-owin is to implement this specification to use node.js, through connect framework, as the Web Server.

The connect-owin exports a function that returns a connect middleware. The function takes the path of the OWIN .NET assembly file as a parameter.

No comment yet.
Scoop.it!

Bridging Node.js and .NET using Edge.js

Bridging Node.js and .NET using Edge.js | JavaScript for Line of Business Applications | Scoop.it

Why .NET?
* 18K+ nuget packages
* SQL Server
* Microsoft Office
* Windows Azure
* Exchange, SharePoint, etc.


What is Edge.js?
* Run .NET in-process
* …including F#, ADO.NET, Python, and Powershell
* Run CPU-intensive code
* Alternative to writing native modules in C


What else could you do with Edge.js?

* Windows Event log
* Performance counters
* Registry
* Print
* Hardware (camera, microphone, Win32 drivers)
* Video encoding, image processing, other CPU-bound work
* Powershell

No comment yet.
Scoop.it!

Building production websites with Node.js on the Microsoft stack

Node.js on Windows, in production, may not be the most common configuration – but it’s immensely powerful with the help of edge.js, iisnode, and other open sou…
No comment yet.
Scoop.it!

Node to Microsoft SharePoint / Project Online via Edge.js

Node to Microsoft SharePoint / Project Online via Edge.js | JavaScript for Line of Business Applications | Scoop.it

We want to get tasks from a project hosted on Microsoft Project Online. We have a lot of Javascript code written for Node for handling that data once we get it. We have .NET dlls that provide an API for working with Microsoft Project Online. So how can we tie the two together? How can our Node application communicate with a .NET library?

Well we could create a web service interface to act as a facade for communicating with the library and consume that in our Node application. That’s a decent option and one we considered. Instead we decided to take a look at Edge.js.

No comment yet.
Scoop.it!

Run .NET and Node.js code in-process with Edge.js

Run .NET and Node.js code in-process with Edge.js | JavaScript for Line of Business Applications | Scoop.it
Tomasz Janczuk has created Edge.js, which allows users to combine the power of .NET with Node.js. Curious about how to add non-blocking communication to your .NET project? Looking for a way to move computationally intensive code out of your Node thread? Janczuk's article provides a great starting point on how Edge works and the benefits it can bring to your next application.
No comment yet.
Scoop.it!

Edge.js - connects Node.js V8 and .NET CLR - in process

Edge.js - connects Node.js V8 and .NET CLR - in process | JavaScript for Line of Business Applications | Scoop.it

Edge.js allows you to run .NET and Node.js code in one process. You can call .NET functions from Node.js and Node.js functions from .NET. Edge.js takes care of marshaling data between CLR and V8. Edge.js also reconciles threading models of single threaded V8 and multi-threaded CLR. Edge.js ensures correct lifetime of objects on V8 and CLR heaps. The CLR code can be pre-compiled or specified as C#, F#, Python, or PowerShell source: edge.js can run CLR scripts at runtime. Edge can be extended to support other CLR languages.

No comment yet.