A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM

This is Part 4 of our SDK development series where we will publish our SDK


This content originally appeared on HackerNoon and was authored by Syed Muhammad Yaseen

Helloooooooo!

\ Hope you're doing great! This is SMY! 👋 Let's jump right in 🚀

\ This is Part 4 of our SDK development series where we will publish our SDK

Contents:

  • Creating an NPM account
  • Publishing to NPM, semantic versioning, and LICENSE

Step 1: Creating an NPM Account

Head over to https://www.npmjs.com, and create an account.

Step 2: Publish

In the terminal, write:

npm login

\ After following the login steps, write:

npm publish

\ This can fail due to duplicate package names or wrong configuration in package.json

\ Your package.json should look like the following:

{
  "name": "ts-lib-template-starter",
  "version": "1.0.0",
  "description": "SDK development tutorial",
  "main": "./src/index.ts",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "tsup ./src/index.ts --watch"
  },
  "type": "module",
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/node": "^20.14.8",
    "tsup": "^8.1.0",
    "typescript": "^5.5.2"
  }
}

\ Congrats; you just published your first SDK to NPM 🎉🥳 🚀🚀🚀

Step 3: Semantic Versioning

When publishing a library, it is good to keep versioning in check. Versioning helps the developer integrate the code to get an idea of what update happened to the SDK. Furthermore, the right versioning will help package managers to update to the level as it is mentioned in their package.json.

\ To help developers who rely on your code, we recommend starting your package version at 1.0.0 and incrementing as follows:

| Code status | Stage | Rule | Example version | |----|----|----|----| | First release | New product | Start with 1.0.0 | 1.0.0 | | Backward-compatible bug fixes | Patch release | Increment the third digit | 1.0.1 | | Backward-compatible new features | Minor release | Increment the middle, digit and reset the last digit to zero | 1.1.0 | | Changes that break backward compatibility | Major release | Increment the first digit and reset the middle and last digits to zero | 2.0.0 |

Learn more about semantic versioning here: https://docs.npmjs.com/about-semantic-versioning

Step 4: LICENSE

Specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.

\

\ source: https://snyk.io/learn/open-source-licenses/

\ For example, this SDK is open for distribution and modifying the code so I would use MIT as LICENSE.

\ In package.json

\

  "license": "MIT"

\ Learn more about various types of LICENCES here: https://snyk.io/learn/open-source-licenses/

Wrapping Up:

We Just completed the steps to publish our SDK. Head over to Part 5 where we will make a CDN for browsers 🚀

…..

Now, you're equipped with the knowledge to publish your own SDK. Happy coding! 🚀

\ That's it, folks! hope it was a good read for you. Thank you! ✨

\ 👉 Follow me

\ GitHub

LinkedIn


This content originally appeared on HackerNoon and was authored by Syed Muhammad Yaseen


Print Share Comment Cite Upload Translate Updates
APA

Syed Muhammad Yaseen | Sciencx (2024-07-08T21:02:23+00:00) A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM. Retrieved from https://www.scien.cx/2024/07/08/a-5-year-old-could-follow-this-typescript-sdk-development-guide-part-4-publishing-to-npm/

MLA
" » A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM." Syed Muhammad Yaseen | Sciencx - Monday July 8, 2024, https://www.scien.cx/2024/07/08/a-5-year-old-could-follow-this-typescript-sdk-development-guide-part-4-publishing-to-npm/
HARVARD
Syed Muhammad Yaseen | Sciencx Monday July 8, 2024 » A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM., viewed ,<https://www.scien.cx/2024/07/08/a-5-year-old-could-follow-this-typescript-sdk-development-guide-part-4-publishing-to-npm/>
VANCOUVER
Syed Muhammad Yaseen | Sciencx - » A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/07/08/a-5-year-old-could-follow-this-typescript-sdk-development-guide-part-4-publishing-to-npm/
CHICAGO
" » A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM." Syed Muhammad Yaseen | Sciencx - Accessed . https://www.scien.cx/2024/07/08/a-5-year-old-could-follow-this-typescript-sdk-development-guide-part-4-publishing-to-npm/
IEEE
" » A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM." Syed Muhammad Yaseen | Sciencx [Online]. Available: https://www.scien.cx/2024/07/08/a-5-year-old-could-follow-this-typescript-sdk-development-guide-part-4-publishing-to-npm/. [Accessed: ]
rf:citation
» A 5-Year-Old Could Follow This TypeScript SDK Development Guide ~ Part 4: Publishing to NPM | Syed Muhammad Yaseen | Sciencx | https://www.scien.cx/2024/07/08/a-5-year-old-could-follow-this-typescript-sdk-development-guide-part-4-publishing-to-npm/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.