Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Jwt | 6,964 | 6,817 | 535 | 3 days ago | 51 | August 19, 2022 | 9 | bsd-3-clause | PHP | |
A simple library to work with JSON Web Token and JSON Web Signature | ||||||||||
Pyjwt | 4,579 | 9,443 | 1,606 | 12 days ago | 45 | May 12, 2022 | 17 | mit | Python | |
JSON Web Token implementation in Python | ||||||||||
Jsmn | 3,265 | 18 days ago | 89 | mit | C | |||||
Jsmn is a world fastest JSON parser/tokenizer. This is the official repo replacing the old one at Bitbucket | ||||||||||
Node Jwt Simple | 1,320 | 7,828 | 569 | 2 years ago | 13 | March 30, 2019 | 33 | mit | JavaScript | |
JWT(JSON Web Token) encode and decode module for node.js | ||||||||||
Vault Ui | 1,299 | 5 years ago | 3 | October 04, 2017 | 50 | other | JavaScript | |||
Vault-UI — A beautiful UI to manage your Vault, written in React | ||||||||||
Frangipanni | 1,156 | 5 months ago | 6 | April 10, 2021 | 6 | mit | Go | |||
Program to convert lines of text into a tree structure. | ||||||||||
Token Lists | 1,030 | 51 | 8 days ago | 30 | June 16, 2022 | 133 | mit | TypeScript | ||
📚 The Token Lists specification | ||||||||||
Spring Boot Jwt | 1,022 | a year ago | mit | Java | ||||||
JWT auth service using Spring Boot, Spring Security and MySQL | ||||||||||
Jwt | 844 | 6 years ago | mit | Java | ||||||
webapp用户身份认证方案 JSON WEB TOKEN 实现Deme示例,Java版 | ||||||||||
Jsonwebtoken.swift | 659 | 31 | 4 years ago | 14 | November 06, 2017 | 26 | bsd-2-clause | Swift | ||
Swift implementation of JSON Web Token (JWT). |
An implementation of JSON Pointer - Go language
jsonText := `{
"name": "Bobby B",
"occupation": {
"title" : "King",
"years" : 15,
"heir" : "Joffrey B"
}
}`
var jsonDocument map[string]interface{}
json.Unmarshal([]byte(jsonText), &jsonDocument)
//create a JSON pointer
pointerString := "/occupation/title"
pointer, _ := NewJsonPointer(pointerString)
//SET a new value for the "title" in the document
pointer.Set(jsonDocument, "Supreme Leader of Westeros")
//GET the new "title" from the document
title, _, _ := pointer.Get(jsonDocument)
fmt.Println(title) //outputs "Supreme Leader of Westeros"
//DELETE the "heir" from the document
deletePointer := NewJsonPointer("/occupation/heir")
deletePointer.Delete(jsonDocument)
b, _ := json.Marshal(jsonDocument)
fmt.Println(string(b))
//outputs `{"name":"Bobby B","occupation":{"title":"Supreme Leader of Westeros","years":15}}`
https://tools.ietf.org/html/rfc6901
The 4.Evaluation part of the previous reference, starting with 'If the currently referenced value is a JSON array, the reference token MUST contain either...' is not implemented.