Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jsii-srcmak

Package Overview
Dependencies
Maintainers
3
Versions
1244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsii-srcmak

generate source code in multiple languages from typescript

  • 0.1.1171
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
47K
decreased by-58.38%
Maintainers
3
Weekly downloads
 
Created

What is jsii-srcmak?

The jsii-srcmak npm package is a tool that allows you to generate source code in multiple programming languages from a single TypeScript source. It leverages the jsii (JavaScript Interoperability Interface) framework to achieve this, making it easier to maintain and distribute libraries across different languages.

What are jsii-srcmak's main functionalities?

Generate Python Code

This feature allows you to generate Python code from a TypeScript entry point. The generated code will be placed in the specified output directory.

const srcmak = require('jsii-srcmak');

srcmak({
  outdir: 'output-directory',
  targets: ['python'],
  entrypoint: 'index.ts'
});

Generate Java Code

This feature allows you to generate Java code from a TypeScript entry point. The generated code will be placed in the specified output directory.

const srcmak = require('jsii-srcmak');

srcmak({
  outdir: 'output-directory',
  targets: ['java'],
  entrypoint: 'index.ts'
});

Generate C# Code

This feature allows you to generate C# code from a TypeScript entry point. The generated code will be placed in the specified output directory.

const srcmak = require('jsii-srcmak');

srcmak({
  outdir: 'output-directory',
  targets: ['csharp'],
  entrypoint: 'index.ts'
});

Other packages similar to jsii-srcmak

FAQs

Package last updated on 02 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc