spencermountain / spacetime

A lightweight javascript timezone library
http://spacetime.how/
Other
3.97k stars 183 forks source link

Where can I install spacetime? #271

Closed naziko2411 closed 3 years ago

naziko2411 commented 3 years ago

I know it's just a basic question. I don't know how I install spacetime for using dates and specific websites.

spencermountain commented 3 years ago
<script src="https://unpkg.com/spacetime"></script>
<script>
  var d = spacetime('March 1 2012', 'America/New_York')
  //set the time
  d = d.time('4:20pm')
</script>
naziko2411 commented 3 years ago

Thank you.