How to Create and Publish an NPM Package

Поделиться
HTML-код
  • Опубликовано: 7 ноя 2024

Комментарии • 23

  • @harshavardhannakkina1843
    @harshavardhannakkina1843 3 года назад +5

    so once we publish it to npm, we can install it with npm, yarn, pnpm etc. right?

  • @stephenpaulhassall
    @stephenpaulhassall 6 месяцев назад

    This was very good. Thank you good sir.

  • @49sandeep
    @49sandeep 3 года назад +2

    Awesome..plz keep it up...very well explained 👌🏻👌🏻👌🏻👏👏👏

  • @feridbedelov1122
    @feridbedelov1122 3 года назад +1

    Looking forward to watching semantic versioning tutorial!!

    • @SwashbucklingwithCode
      @SwashbucklingwithCode  3 года назад +1

      Awesome! I already have it all planned out, I just got swamped recently with work.

  • @drewbird87
    @drewbird87 3 года назад +1

    Hey matey! Just want to say, thanks for the content 👍🏼👍🏼

  • @jamesbruner6834
    @jamesbruner6834 3 года назад +3

    Great video dude, easy to follow and informative. You love to see it.

  • @thepopstudio2354
    @thepopstudio2354 3 года назад +1

    The best channel i've ever seen! Do SQL pls if u can, i think it would be very interesting

    • @SwashbucklingwithCode
      @SwashbucklingwithCode  3 года назад

      Any specific SQL things you are looking for?

    • @thepopstudio2354
      @thepopstudio2354 3 года назад +1

      ​@@SwashbucklingwithCode SQL is required in many vacancies for the Front-end position, I would like to hear a professional opinion, is this technology really necessary and if so, can you make a video on the introduction to this technology?

    • @SwashbucklingwithCode
      @SwashbucklingwithCode  3 года назад

      @@thepopstudio2354 Oh, so you mean a SQL from scratch sort of thing? I wouldn't go so far as to say it's necessary, but I would definitely recommend it because you'll likely encounter it at once point.
      I'll add it to my queue and give my personal experience with it, but in the meantime there are definitely a ton of videos out there for it.

  • @alainr965
    @alainr965 3 года назад

    You saved my day !

  • @davidfromnorth7836
    @davidfromnorth7836 3 года назад +1

    what's your font name?

    • @SwashbucklingwithCode
      @SwashbucklingwithCode  3 года назад

      I'm guessing you are asking about the code editor font, which is Cascadia in this one, I believe.

  • @bad_ai_engineer
    @bad_ai_engineer Год назад

    Unfortunately I am having the problem where my code just doesn't end up in the registry even after a successful publish.

    • @SwashbucklingwithCode
      @SwashbucklingwithCode  Год назад

      It sometimes takes a while for it to show up, but I don't know how long you've tried waiting thus far.

    • @bad_ai_engineer
      @bad_ai_engineer Год назад +1

      @@SwashbucklingwithCode I figured it out. I was with the package.json, I changed the output directory from `lib` to `dist` and didn't set the "files" key to "dist/**/*" and well as mention the new entrypoint, "main": "dist/index.js". It is working now lol, but I am just trying to figure out if I am over engineering now.