instructively 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -26
  2. package/index.js +0 -4
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,29 +1,4 @@
1
- # Instructionly
2
-
3
- A simple hello world Node.js package for npm.
4
-
5
- ## Installation
6
-
7
- ```bash
8
- npm install instructionly
9
- ```
10
-
11
- ## Usage
12
-
13
- ```javascript
14
- const instructionly = require('instructionly');
15
-
16
- // Basic hello world
17
- console.log(instructionly.hello()); // "Hello, World!"
18
-
19
- // Hello with custom name
20
- console.log(instructionly.helloWithName('John')); // "Hello, John!"
21
-
22
- // Get package version
23
- console.log(instructionly.getVersion()); // "1.0.0"
24
- ```
25
-
26
- ## API
1
+ # API
27
2
 
28
3
  ### `hello()`
29
4
  Returns a simple "Hello, World!" message.
package/index.js CHANGED
@@ -1,7 +1,3 @@
1
- /**
2
- * Instructionly - A simple hello world Node.js package
3
- */
4
-
5
1
  function hello() {
6
2
  return "Hello, World!";
7
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instructively",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A simple hello world Node.js package",
5
5
  "main": "index.js",
6
6
  "scripts": {