UNPKG

npm-wizard

Version:

My #1 npm package 'Simple Hello World function'

29 lines (22 loc) 595 B
# My #1 npm package ## Installation Steps 1. **Install Node.js** Download and install from [https://nodejs.org/](https://nodejs.org/) 2. **Create a project directory** ```bash mkdir my-project cd my-project 3. **Initialize npm** ```bash npm init 4. **Install the package** ```bash npm install npm-wizard 5. **Create and configure index.js** Create index.js file with: ```bash const greeting = require("npm-wizard"); console.log(greeting()); 6. **Run the application** ```bash node index.js