DEV Community

웹학교
웹학교

Posted on

1 1

npm으로 사이트맵 쉽게 만들기

사이트를 만들면 구글이나 네이버에 사이트맵을 제출하여 사이트 방문자를 늘릴 수 있습니다.
온라인에서 사이트맵을 일정 크기까지 무료로 만들어주는 사이트가 많이 있지만
직접 만들 수 있습니다.

npm으로 사이트맵 만들기

  1. 터미널 프로그램을 실행합니다. (Power SHell, Git bash,....)
  2. npm으로 사이트맵 생성기를 설치합니다.
$ npm install -g sitemap-generator-cli
Enter fullscreen mode Exit fullscreen mode
  1. npx명령을 이용하여 사이트맵을 만듭니다. (npm v5.2이상)
$ npx sitemap-generator-cli https://example.com
Enter fullscreen mode Exit fullscreen mode
  1. 검색엔진(구글, 네이버,...)에 sitemap.xml 제출

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay