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

typescript-cs-poco

v1.12.0

Published

Generates a Typescript type definition file for a C# POCO class or enum.

Downloads

131

Readme

typescript-cs-poco

Build Status

Generates a Typescript type definition file for a C# POCO class. Takes in a string of the file contents and spits back a string of the matching Typescript interface. This package is intended to be wrapped for use with task runners such as Gulp and Grunt.

Current wrappers

  • Gulp: https://github.com/ffMathy/gulp-typescript-cs-poco
  • Grunt: https://github.com/ffMathy/grunt-typescript-cs-poco

Options

The following options can be supplied into the pocoGen function, and are therefore also available in the above wrappers.

baseNamespace

If supplied, wraps all classes into a module with the same name. Example:

public class MyPoco
{
	public string Name { get; set; }
	public int Id { get; set; }
}
module MyNamespace {
	export interface IMyPoco {
		Name: string;
		Id: number;
	}
}

Note that using this option with gulp concat() will create many individual module/interface declarations. This is technically valid, but if you want a nice, clean version run concat() first on all your .cs files and then run this plugin with the baseNamespace option to wrap EVERYthing in a single module namespace.

dateTimeToDate

Defaults to false. Due to serialization/deserialization complications, the default implementation is to transform DateTime fields to strings, as that's what they naturally turn into in most .NET APIs. If you want to treat the type as a Date, first make sure your API is handling the serialization properly! Then provide the dateTimeToDate option set to true to turn this:

public class MyPoco
{
  public DateTime Timestamp { get; set; }
  public double Value { get; set; }
}

Into this:

interface IMyPoco {
  Timestamp: Date;
  Value: number;
}
definitionFile

Defaults to true. If explicitly set to false, the output file will not be of type d.ts and any baseNamespace being used will not have declare before the module name.

propertyNameResolver

If supplied, this function will be called every time a property is resolved. The function takes a single parameter of the name of the property and should return the transformed name as a string. For example, the function might turn the property name into camelCase, or prepend it with a prefix of some sort to help match an API-side transformation.

The following example shows how to turn property names into camelCase.

function camelCasePropertyNameResolver(propName) { 
  return propName[0].toLowerCase() + propName.substring(1); 
}
timeout

Specifies the regex timeout, in milliseconds. Defaults to 30000. Useful if you are performing operations on large items.

prefixWithI

Defaults to false. If set to true, all interfaces (but not enums) will be prefixed with I. The conversion will now look like this:

public class MyPoco
{
  public string Name { get; set; }
  public int Id { get; set; }
}

To:

interface IMyPoco {
  Name: string;
  Id: number;
}
additionalInterfaceCodeResolver

If supplied, this function will be called for every interface generated. The function takes a single parameter of the name of the class or interface that the current interface is being generated from and should return additional code that will be added to the interface.

The following example shows how to add a clone method to all interfaces generated which returns a type of the original class.

function cloneFunctionInterfaceCodeResolver(className) { 
  return "clone(newId: number): " + className + ";"; 
}
methodNameResolver

Same as propertyNameResolver, but for method names.

interfaceNameResolver

Same as propertyNameResolver, but for interface names.

typeResolver

Same as propertyNameResolver, but has a scope parameter as well, and is meant for type names instead. The scope can be either "property-type", "method-return-type" or "method-argument-type" depending on what context the current type was found.

For instance, the following example will wrap all types emitted in an Observable<>, but only for properties.

function camelCasePropertyTypeResolver(typeName, scope) { 
  if(scope !== "property-type") return typeName;
  return "Observable<" + typeName + ">"; 
}
ignoreVirtual

If set to true, virtual properties will be ignored. This is useful for things like EF-created POCOs that may have virtual reference fields that shouldn't be included.

ignoreReadOnly

If set to true, the readonly keyword on properties will be removed, but the properties themselves will still be added.

includeInterfaces

If set to true, any interfaces found in the given files will also be included as Typescript interfaces. By default interfaces are ignored.

ignoreInheritance

If set to an array of class names, inheritance from these classes will be ignored.

customTypeTranslations

If set to an object, map every key in the object to the key's value. For example:

var options = {
  customTypeTranslations: {
    MyCustomStringClass: 'string'
  }
}

Will turn this:

public class MyPoco
{
  public MyCustomStringClass Name { get; set; }
}

Into this:

interface MyPoco {
  Name: string;
}