2.0.1 • Published 8 years ago

navershare v2.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

Naver Share URL Generator

nodeico

npm version download copy

Generate NAVER Share url from NAVER Developer API. More infomation can be found at NAVER Developers.

Usage

1

const share_url = require('navershare').share(
  "http://npmjs.com", // URL to share
  "npm URL" // Title, Optional
)
// returns Share URL

2

require('navershare').share("http://npmjs.com", "npm URL", (url) => {
  console.log(url)
  // Callback
})

Without title:

require('navershare').share("http://npmjs.com", null, (url) => {
  console.log(url)
  // Callback
})

Another Share

Twitter

Twitter Follow

We support Twitter too!

require('navershare').another.twitter(
  "navershare is awesome!",
  "https://www.npmjs.com/package/navershare",
  "@Basix1120"
)
// returns Share URL

Callback are supported.

require('navershare').another.twitter(..., (e) => {
  console.log(e)
})

GitHub

GitHub followers

Please Note

  • On Thu Mar 31 10:19:00 UTC 2016, NAVER Share API is buggy now.
2.0.1

8 years ago

2.0.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago