Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianconcept/json
JSON port from older PharoExtras @ Smalltalkhub
https://github.com/sebastianconcept/json
json pharo pharo-smalltalk smalltalk
Last synced: 14 days ago
JSON representation
JSON port from older PharoExtras @ Smalltalkhub
- Host: GitHub
- URL: https://github.com/sebastianconcept/json
- Owner: sebastianconcept
- License: mit
- Created: 2020-02-14T19:11:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-26T00:18:38.000Z (11 months ago)
- Last Synced: 2024-12-04T21:42:13.462Z (19 days ago)
- Topics: json, pharo, pharo-smalltalk, smalltalk
- Language: Smalltalk
- Homepage:
- Size: 43.9 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JSON
JSON abstraction for Pharo Smalltalk
![build](https://github.com/sebastianconcept/JSON/actions/workflows/build.yml/badge.svg)
[![Release](https://img.shields.io/github/v/tag/sebastianconcept/JSON?label=release)](https://github.com/sebastianconcept/JSON/releases)
[![License](https://img.shields.io/badge/license-MIT-green)](./LICENSE.txt)[![Pharo 7](https://img.shields.io/badge/Pharo-7-%23383932.svg)](https://pharo.org/download)
[![Pharo 10](https://img.shields.io/badge/Pharo-10-%23383932.svg)](https://pharo.org/download)This is a port from older `smalltalkhub.com/PharoExtras/JSON`
This is a comfortable way to use Smalltalk objects that your program can eventually represent as JSON.
## Example
```smalltalk
"This is how you would use a typical dictionary:"
theUniverseAndEverything := Dictionary new
at: #theQuestion put: 'Questioner asks';
at: #answer put: 42;
yourself."JsonObject instances are like dictionaries
that use DoesNotUnderstand to set their values:"
theUniverseAndEverything := JsonObject new
theQuestion: 'Questioner asks';
answer: 42;
yourself."And then you can:"
theUniverseAndEverything asJSONString.
'{"answer"":42,"theQuestion":"Questioner asks"}'
```## Load from Playground
```smalltalk
Metacello new
baseline:'JSON';
repository: 'github://sebastianconcept/JSON:latest/src';
load.
```## Load as dependency
```smalltalk
spec
baseline: 'JSON'
with: [ spec
loads: #('JSON');
repository: 'github://sebastianconcept/JSON:latest/src' ]
```