Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

cs-npm-test-package

christhoph0079MIT1.0.2

Create a first package

readme

First test package

For installing package, just run this command in your terminal/shell

npm install cs-npm-test-package

Example

Here a example for use:

// ES6+
import { printMsg } from "cs-npm-test-package";
// CommonJS
const { printMsg } = require("cs-npm-test-package");

printMsg();