create-nvmrc
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

Welcome to create-nvmrc 👋

Version Documentation Maintenance License: MIT

A GitHub action that commits an .nvmrc file to your repository that can also be used as an npm module or cli.

🏠 Homepage

Install

npm install create-nvmrc

Usage

import { createNvmrcFile } from "create-nvmrc";
 
createNvmrcFile("/path/to/.nvmrc", "v12.16.3", true)
    .then(() => console.log("created"))
    .catch(err => console.log("failed", err));
 
createNvmrcFile("/path/to/.nvmrc", "12.16.3", true)
    .then(() => console.log("created"))
    .catch(err => console.log("failed", err));
 
createNvmrcFile("/path/to/.nvmrc", "lts", true)
    .then(() => console.log("created"))
    .catch(err => console.log("failed", err));
 
createNvmrcFile("/path/to/.nvmrc", "current", true)
    .then(() => console.log("created"))
    .catch(err => console.log("failed", err));

Run tests

npm run test

Author

👤 Rik Hoffbauer 62353999+rikhoffbauer@users.noreply.github.com (rikhoffbauer.github.io)

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Rik Hoffbauer 62353999+rikhoffbauer@users.noreply.github.com (rikhoffbauer.github.io).
This project is MIT licensed.

Package Sidebar

Install

npm i create-nvmrc

Weekly Downloads

7

Version

0.1.1

License

MIT

Unpacked Size

123 kB

Total Files

60

Last publish

Collaborators

  • rik.hoffbauer