ajson icon indicating copy to clipboard operation
ajson copied to clipboard

Abstract JSON for Golang with JSONPath support

Results 17 ajson issues
Sort by recently updated
recently updated
newest added

Hello Sorry to bother you, but the darwin amd64 build is actually a linux build.

question

Add new functions `b64encode` and `b64decode` that are equal to the same functions from `encoding/base64`

good first issue

This is a basic PR to accumulate all related changes to migrate to `v1`. Closes #42 Closes #35

# Draft for the `Version v1.0.0` milestone 1. Create sub-package `ajson/jsonpath` with the main types and functions: ```golang package jsonpath type JSONPath struct { Tokens []Token } type Token interface...

Hello! It would be great if there was a possibility of filtering objects by value as it's for arrays values. F.e.: 1. Array values Here is the data: `{"data": ["b"]}`...

This is an interesitng project! It seems like it's the only jsonpath library that supports mutation and not just retrieval. That said, the mutation API/behavior could be improved. I'd like...

It seems ajson command line does not pretty print output. Can we support a pretty print output, even if by providing a command line switch?

Switch to typed consts ```golang type OperationPriority uint8 const ( PriorityUnknown OperationPriority = iota PriorityOr PriorityAnd PriorityEq PrioritySum PriorityBit PriorityMul PriorityPow ) priority = map[string]OperationPriority{ "**": PriorityPow, // additional: power...

good first issue

Add support length function to String Nodes

good first issue

Rewrite internal: - [ ] `quote.go` - [ ] `unquote.go`