npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ts-jackson

v1.6.0

Published

`ts-jackson` is a powerful TypeScript library designed for efficient JSON serialization and deserialization into classes. It leverages lodash's path patterns to effortlessly resolve deeply nested structures. Explore the `src/examples` directory for practi

Downloads

2,076

Readme

ts-jackson

ts-jackson is a powerful TypeScript library designed for efficient JSON serialization and deserialization into classes. It leverages lodash's path patterns to effortlessly resolve deeply nested structures. Explore the src/examples directory for practical illustrations of its capabilities.

🚀 Installation

Easily integrate ts-jackson into your project using npm or yarn:

npm install ts-jackson --save
# or
yarn add ts-jackson

TypeScript Configuration

Ensure your TypeScript environment is configured to use decorators:

{
  "compilerOptions": {
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true
  }
}

🎯 Goals

  • Minimalistic API.
  • Support for serializing and deserializing nested structures.
  • Support for custom serialization and deserialization.

📚 Examples

For practical usage examples, refer to the src/examples directory.

📝 Usage

🔨 Decorators

The library provides two main decorators: @Serializable and @JsonProperty.

  • @Serializable marks a class as serializable.
  • @JsonProperty collects metadata of annotated properties.

📍 Path Resolutions

Path resolution is performed using lodash/set. Refer to the "Path Resolutions" section for further details.

🔄 Serialization and Deserialization

Serialization and deserialization are handled using the provided deserialize and serialize functions. For more details, see the "Serialization and Deserialization" section.

🔗 SerializableEntity

SerializableEntity is a utility class that simplifies serialization/deserialization processes and removes the need for explicit @Serializable decoration. More information can be found in the "SerializableEntity" section.

🔧 API

Imports

import { JsonProperty, Serializable, deserialize, serialize, SerializableEntity } from 'typescript-json-serializer';

Decorators

@Serializable

Mark a class as serializable:

@Serializable()
class MyClass {}

@JsonProperty

This decorator is used for collecting annotated property metadata:

// Basic usage
@JsonProperty()
name: string;

// With a path string argument
@JsonProperty('duration_ms')
durationMs: number;

// With options
@JsonProperty({ path: 'duration_ms' })
durationMs: number;

For more advanced usage patterns, refer to the full JsonProperty decorator API in the original documentation.

📍 Path Resolutions

Resolving properties can be done using single paths, multiple paths, or through custom deserialize/serialize functions:

// Single path
@JsonProperty('track.id')
readonly id: string;

// Multiple paths
@JsonProperty({
  paths: ["images.smallImage", "images.mediumImage", "images.bigImage"],
  elementType: Image
})
images: Image[]

For more patterns on resolving structures, check the lodash/get documentation.

🔄 Serialization and Deserialization

Use the provided deserialize and serialize functions:

const trackJson = { track: { id: 'some id' } };

@Serializable()
class Track {
  @JsonProperty("track.id")
  readonly id: string;
}

const deserializedClassInstance = deserialize(trackJson, Track);
const serializedJson = serialize(deserializedClassInstance);

🔗 SerializableEntity

A utility class that encompasses deserialize, serialize, and omits the need for explicit @Serializable decoration:

class Image extends SerializableEntity {
  @JsonProperty()
  readonly height?: number;

  @JsonProperty()
  readonly width?: number;

  @JsonProperty({ required: true })
  readonly url: string;
}