Giter Site home page Giter Site logo

jasoom's Introduction

Jasoom 1.0.0

An easy to use, type safe, Swift wrapper for NSJSONSerialization

Carthage compatible

Parsing JSON

do {
    let json = try JSON.parseData(data)
	
	if json["name"].isUndefined {
		throw .MissingName
	}
	
    if json["info"]["age"].isUndefined {
		throw .MissingAge
	}
	
	let model = MyModel(
		name: json["name"].stringValue!
		age: json["info"]["age"].intValue!
		married: json["status"]["married"].boolValue ?? false
		firstCar: json["cars"][0].stringValue ?? ""
	)
}
catch {
	// Handle error
}

Generating JSON

var object = JSON.object()
object["name"] = .String("Bob Smith")
object["info"] = JSON.object()
object["info"]["age"] = .Number(10)
object["status"] = JSON.object()
object["status"]["married"] = .Number(true)
object["cars"] = JSON.array()
object["cars"].append(.String("Ford Mustang"))

do {
	let data = try object.generateData()
}
catch {
	// Handle error
}

Contact

Justin Kolb
@nabobnick

License

Jasoom is available under the MIT license. See the LICENSE file for more info.

jasoom's People

Contributors

jkolb avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

carabina

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.