Browse free open source Swift JSON Software and projects below. Use the toggles on the left to filter open source Swift JSON Software by OS, license, language, programming language, and project status.

  • SKUDONET Open Source Load Balancer Icon
    SKUDONET Open Source Load Balancer

    Take advantage of Open Source Load Balancer to elevate your business security and IT infrastructure with a custom ADC Solution.

    SKUDONET ADC, operates at the application layer, efficiently distributing network load and application load across multiple servers. This not only enhances the performance of your application but also ensures that your web servers can handle more traffic seamlessly.
  • Automated quote and proposal software for IT solution providers. | ConnectWise CPQ Icon
    Automated quote and proposal software for IT solution providers. | ConnectWise CPQ

    Create IT quote templates, automate workflows, add integrations & price catalogs to save time & reduce errors on manual data entry & updates.

    ConnectWise CPQ, formerly ConnectWise Sell, is a professional quote and proposal automation software for IT solution providers. ConnectWise CPQ offers a wide range of tools that enables IT solution providers to save time, quote more, and win big. Top features include professional quote or proposal templates, product catalog and sourcing, workflow automation, sales reporting, and integrations with best-in-breed solutions like Cisco, Dell, HP, and Salesforce.
  • 1
    JSONConverter

    JSONConverter

    owerful and beautiful JSON-to-model MacOS app

    A MacOS application with a beautiful interface and powerful functions, it formats JSON and generates model class code in the corresponding language, supports multiple development languages and its popular third-party class libraries, multiple configuration options, and flexibly builds classes
    Downloads: 4 This Week
    Last Update:
    See Project
  • 2
    SwiftyJSON

    SwiftyJSON

    Facilitates the use of JSON data in Swift

    Swift is strictly specific about types. But even if explicit typing is good for avoiding making mistakes, it becomes painful when we're dealing with JSON and other aspects that are, by definition, implicit about types. SwiftyJSON, however, facilitates the use of JSON data in Swift.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    SwiftyJSONAccelerator

    SwiftyJSONAccelerator

    macOS app to generate Swift 5 code for models from JSON

    MacOS app Codeable Model file Generator For Swift 5. A Swift model generator like the Objective-C JSONAccelerator. Formats and generates models for the given JSON and also breaks them into files making it easy to manage and share between several models.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 4
    Codable Alamofire

    Codable Alamofire

    Extension for Alamofire that converts JSON data into Decodable objects

    Swift 4 introduces a new Codable protocol that lets you serialize and deserialize custom data types without writing any special code and without having to worry about losing your value types.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Holistically view your business data within a single solution. Icon
    Holistically view your business data within a single solution.

    For IT service providers and MSPs that need a data platform to manage their processes

    BrightGauge, a ConnectWise solution, was started in 2011 to fill a missing need in the small-to-medium IT Services industry: a better way to manage data and provide the value of work to clients. BrightGauge Software allows you to display all of your important business metrics in one place through the use of gauges, dashboards, and client reports. Used by more than 1,800 companies worldwide, BrightGauge integrates with popular business solutions on the market, like ConnectWise, Continuum, Webroot, QuickBooks, Datto, IT Glue, Zendesk, Harvest, Smileback, and so many more. Dig deeper into your data by adding, subtracting, multiplying, and dividing one metric against another. BrightGauge automatically computes these formulas for you. Want to show your prospects how quick you are to respond to tickets? Show off your data with embeddable gauges on public sites.
  • 5
    Decodable

    Decodable

    Swift 2/3 JSON unmarshalling done (more) right

    Simple and strict, yet powerful object mapping is made possible by Swift 2's error handling. Greatly inspired by Argo, but without a bazillion functional operators.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    EVReflection

    EVReflection

    Reflection based (Dictionary, CKRecord, NSManagedObject, Realm, JSON

    At this moment the master branch is tested with Swift 4.2 and 5.0 beta If you want to continue using EVReflection in an older version, then use the corresponding branch. Run the unit tests to see EVReflection in action. In most cases, EVReflection is very easy to use. Just take a look at the section It's easy to use. But if you do want to do nonstandard specific things, then EVReflection will offer you an extensive range of functionality.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    FeatureFlags

    FeatureFlags

    Allows developers to configure feature flags

    FeatureFlags makes it easy to configure feature flags, A/B and MVT tests via a JSON file which may be bundled with your app or hosted remotely. For remotely-hosted configuration files, you may enable/disable features without another release to the App Store, update the percentages of users in A/B test groups or even roll out a feature previously under A/B test to 100% of your users once you have decided that the feature is ready for prime time.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    FeedKit

    FeedKit

    An RSS, Atom and JSON Feed parser written in Swift

    FeedKit is an RSS, Atom and JSON Feed parser written in Swift. Build a URL pointing to an RSS, Atom or JSON Feed. A common scenario in UI environments would be parsing a feed asynchronously from a user-initiated action, such as the touch of a button. Remember, you are responsible for manually bringing the resulting closure to whichever queue is appropriate. Usually to the Main thread, for UI apps, by calling DispatchQueue.main.async. FeedKit adopts Swift 5 Result type, as Result<Feed, ParserError>, and as such, if parsing succeeds you should now have a Strongly Typed Model of an RSS, Atom or JSON Feed, within the Feed enum. The RSS and Atom feed Models are rather extensive throughout the supported namespaces.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    Gloss

    Gloss

    A shiny JSON parsing library in Swift

    A shiny JSON parsing library in Swift.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Manage your IT department more effectively Icon
    Manage your IT department more effectively

    Streamline your business from end to end with ConnectWise PSA

    ConnectWise PSA (formerly Manage) allows you to stop working in separate systems, and helps you build a more profitable business. No more duplicate data entries, inefficient employees, manual invoices, and the inability to accurately track client service issues. Get a behind the scenes look into the award-winning PSA that automates processes for each area of business: sales, help desk, support, finance, and HR.
  • 10
    HandyJSON

    HandyJSON

    A handy swift json-object serialization/deserialization library

    HandyJSON is a framework written in Swift which makes converting model objects( pure classes/structs ) to and from JSON easy on iOS. Compared with others, the most significant feature of HandyJSON is that it does not require the objects inherit from NSObject(not using KVC but reflection), nor implements a 'mapping' function(writing value to memory directly to achieve property assignment). HandyJSON is totally dependent on the memory layout rules inferred from Swift runtime code. We are watching it and will follow every bit if it changes. To support deserialization from JSON, a class/struct needs to conform to 'HandyJSON' protocol. It's truly protocol, not some class inherited from NSObject. For struct, since the compiler provides a default empty initializer, we use it for free. HandyJSON supports deserialization from the designated path of JSON.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Himotoki

    Himotoki

    A type-safe JSON decoding library purely written in Swift

    Himotoki is a type-safe JSON decoding library written purely in Swift. This library is highly inspired by the popular Swift JSON parsing libraries: Argo and ObjectMapper.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    JSON framework

    JSON framework

    Micro framework for easily parsing JSON in Swift

    Micro framework for easily parsing JSON in Swift with rich error messages in less than 100 lines of code.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    JSONNeverDie

    JSONNeverDie

    Auto reflection tool from JSON to Model, user friendly JSON encoder

    JSONNeverDie is an auto-reflection tool from JSON to Model, a user-friendly JSON encoder/decoder, that aims to never die. Also, JSONNeverDie is a very important part of Pitaya.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    KakaJSON

    KakaJSON

    Fast conversion between JSON and model in Swift

    Fast conversion between JSON and model in Swift.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    Marshal

    Marshal

    Marshaling the typeless wild west of [String: Any]

    In Swift, we all deal with JSON, plists, and various forms of [String: Any]. Marshal believes you don't need a Ph.D. in monads or magic mirrors to deal with these in an expressive and type-safe way. Marshal will help you write declarative, performant, error-handled code using the power of Protocol Oriented Programming.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    ObjectMapper

    ObjectMapper

    Simple JSON Object mapping written in Swift

    ObjectMapper is a framework written in Swift that makes it easy for you to convert your model objects (classes and structs) to and from JSON. Once your class implements Mappable, ObjectMapper allows you to easily convert to and from JSON. Use functions to validate JSON prior to object serialization provide an existing cached object to be used for mapping, return an object of another type (which also conforms to BaseMappable) to be used for mapping. For instance, you may inspect the JSON to infer the type of object that should be used for mapping. ObjectMapper supports dot notation within keys for easy mapping of nested objects. ObjectMapper also supports custom transforms that convert values during the mapping process. To use a transform, simply create a tuple with map["field_name"] and the transform of your choice on the right side of the <- operator.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    PMHTTP

    PMHTTP

    Swift/Obj-C HTTP framework with a focus on REST and JSON

    PMHTTP is an HTTP framework built around URLSession and designed for Swift while retaining Obj-C compatibility. We think URLSession is great. But it was designed for Obj-C and it doesn't handle anything beyond the networking aspect of a request. This means no handling of JSON, and it doesn't even provide multipart/form-data uploads. PMHTTP leaves the networking to URLSession and provides everything else.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    Plank

    Plank

    A tool for generating immutable model objects

    Plank is a command-line tool for generating robust immutable models from JSON Schemas. It will save you time writing boilerplate and eliminate model errors as your application scales in complexity.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    Spots

    Spots

    Spots is a cross-platform view controller framework

    Spots is a cross-platform view controller framework for building component-based UIs. The internal architecture is built using generic view models that can be transformed both to and from JSON. So, moving your UI declaration to a backend is as easy as pie. Data source and delegate setup is handled by Spots, so there is no need for you to do that manually. The public API is jam-packed with convenience methods for performing mutation, it is as easy as working with a regular collection type. At the top level of Spots, you have the SpotsController which is the replacement for your view controller.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    Sync

    Sync

    JSON to Core Data and back. Swift Core Data Sync.

    Sync eases your everyday job of parsing a JSON response and syncing it with Core Data. Sync is a lightweight Swift library that uses a convention-over-configuration paradigm to facilitate your workflow. Syncing JSON to Core Data is a repetitive tasks that often demands adding a lot of boilerplate code. Mapping attributes, mapping relationships, diffing for inserts, removals and updates are often tasks that don't change between apps. Taking this in account we took the challenge to abstract this into a library. Sync uses the knowledge of your Core Data model to infer all the mapping between your JSON and Core Data, once you use it, it feels so obvious that you'll wonder why you weren't doing this before.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    TSWeChat

    TSWeChat

    A WeChat alternative. Written in Swift 5

    TSWeChat - A WeChat alternative, updated to Swift 5. The cell image in TSChatImageCell is drawn by using a Mask Layer. The chat background can be changed freely so that UI will look perfect. Audio wav files can be automatically converted into amr files which facilitate file transfer to Android devices. Both of the two types of files have been cached.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Unbox

    Unbox

    The easy to use Swift JSON decoder

    Unbox is an easy-to-use Swift JSON decoder. Don't spend hours writing JSON decoding code - just unbox it instead. Unbox is lightweight, non-magical, and doesn't require you to subclass, make your JSON conform to a specific schema or completely change the way you write model code. It can be used on any model with ease. Unbox automatically (or, actually, Swift does) figures out what types your properties are, and decodes them accordingly.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    Wrap

    Wrap

    The easy to use Swift JSON encoder

    Wrap is an easy-to-use Swift JSON encoder. Don't spend hours writing JSON encoding code - just wrap it instead. Using Wrap is as easy as calling wrap() on any instance of a class or struct that you wish to encode. It automatically encodes all of your type’s properties, including nested objects, collections, enums and more. It also provides a suite of simple but powerful customization APIs that enables you to use it on any model setup with ease.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next