Home - noppoMan/Suv GitHub Wiki

Getting Started

Installation

Ubuntu

# Install build tools and libssl-dev
apt-get install build-essential libtool libssl-dev automake

# build and install libuv
git clone https://github.com/libuv/libuv.git
cd libuv
sh autogen.sh
./configure
make
make install

Other Linux

Install the libuv and openssl to follow the guideline for those

Mac OS X

brew install libuv openssl
brew link libuv --force
brew link openssl --force

API Reference

Full Api Reference is here

Package.swift

import PackageDescription

let package = Package(
	name: "MyPackage",
	dependencies: [
    .Package(url: "https://github.com/noppoMan/Suv", majorVersion: 0, minor: 1),
  ]
)

Guide