netcore alternatives and similar packages
Based on the "Networking" category.
Alternatively, view netcore alternatives based on common mentions on social networks and blogs.
-
snap-core
Core type definitions (Snap monad, HTTP types, etc) and utilities for web handlers. -
snap-server
A fast HTTP server library, which runs Snap web handlers. -
call-haskell-from-anything
Call Haskell functions from any programming language via serialization and dynamic libraries -
PortFusion
Haskell-powered cross-platform transport-layer distributed reverse / forward proxy & tunneling solution – currently available for all TCP protocols (RDP, VNC, HTTP(S), SSH, ...). -
glirc
Haskell IRC library and console client - Join us on libera.chat #glirc -
HaskellNet
Haskell library which provides client support for POP3, SMTP, and IMAP protocols. -
network-transport-zeromq
ZeroMQ transport for distributed-process (aka Cloud Haskell) -
ngx-export
A comprehensive web framework aimed at building custom Haskell handlers for the Nginx Web Server -
http-types
Generic HTTP types for Haskell (for both client and server code) -
graphula
A simple interface for generating persistent data and linking its dependencies -
secure-sockets
A library for making secure connections between servers. -
linklater
A Haskell library for the Slack API (including real-time messaging!)
Static code analysis for 29 languages.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of netcore or a related project?
README
NetCore 1.0
This is the old NetCore controller. We recommend using the new Frenetic controller:
http://www.github.com/frenetic-lang/frenetic
Frenetic implements the main ideas of NetCore and has several more features and enhancements.
NetCore is a high-level network programming language. This package provides a NetCore compiler and runtime system for OpenFlow networks.
Requirements
Haskell Platform 2012.2.0.0 (uses GHC 7.4.1)
This is necessary to build NetCore and the example programs.
A real OpenFlow network, or the Mininet network simulator:
NetCore programs run on OpenFlow networks. We've tested NetCore using the OpenFlow reference switch (user-mode) and a Pronto 3290.
NetCore 1.0 (stable release)
Installation
NetCore is available on Hackage:
cabal update
cabal install netcore
This installs a Haskell library that you can use to write Frenetic applications.
Demos
We have several demos that use Frenetic and scripts that run them on Mininet networks. Download and expand the following tarball:
https://github.com/downloads/frenetic-lang/netcore/netcore-1.0.0-examples.tar.gz
To build:
cd examples
cabal configure
cabal build
sudo ./demo.py <your username> # Mininet requires sudo
NetCore development version
Installation
NetCore is open-source, with code available on Github:
git clone git://github.com/frenetic-lang/netcore.git
cd netcore
git submodule init
git submodule update
make
Demos
Within the NetCore source directory (netcore in the script above):
cd examples
cabal configure
cabal build
sudo ./demo.py <your username> # Mininet requires sudo
Slice Verification
We use translation validation to verify that Frenetic slices are correctly compiled. Verification requires the Microsoft Z3 SMT Solver:
http://research.microsoft.com/en-us/um/redmond/projects/z3/download.html
Our scripts expect the z3 executable to be in the PATH.