npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

google-dsc

v0.0.6

Published

API wrapper for Google Domain Shared Contacts [incomplete]

Downloads

12

Readme

google-dsc

API wrapper for Google Domain Shared Contacts [incomplete]

Warning

This library is in active development and should not be considered stable or production ready.

Supported Fields

  • updated
  • name (gd:name?)
    • given (gd:givenName?)
    • family (gd:familyName?)
    • full (given + family) (note: currently this is a read-only synthesized property independent of the XML representation)
  • emails (gd:email*)
    • email (gd:email)
      • label (@rel?* | @label?) (*the hash on the @rel schema-url)
      • address (@address?)

Behavior

  • Setting properties that do not exist in the XML representation will create them.

Example

You can manipulate


<entry xmlns:atom='http://www.w3.org/2005/Atom'
    xmlns:gd='http://schemas.google.com/g/2005'>
    <category scheme='http://schemas.google.com/g/2005#kind'
      term='http://schemas.google.com/contact/2008#contact' />
    <gd:name>
       <gd:givenName>Elizabeth</gd:givenName>
       <gd:familyName>Bennet</gd:familyName>
       <gd:fullName>Elizabeth Bennet</gd:fullName>
    </gd:name>
    <content type='text'>Notes</content>
    <gd:email rel='http://schemas.google.com/g/2005#work'
      primary='true'
      address='[email protected]' displayName='E. Bennet' />
    <gd:email rel='http://schemas.google.com/g/2005#home'
      address='[email protected]' />
    <gd:phoneNumber rel='http://schemas.google.com/g/2005#work'
      primary='true'>
      (206)555-1212
    </gd:phoneNumber>
    <gd:phoneNumber rel='http://schemas.google.com/g/2005#home'>
      (206)555-1213
    </gd:phoneNumber>
    <gd:im address='[email protected]'
      protocol='http://schemas.google.com/g/2005#GOOGLE_TALK'
      primary='true'
      rel='http://schemas.google.com/g/2005#home' />
    <gd:structuredPostalAddress
        rel='http://schemas.google.com/g/2005#work'
        primary='true'>
      <gd:city>Mountain View</gd:city>
      <gd:street>1600 Amphitheatre Pkwy</gd:street>
      <gd:region>CA</gd:region>
      <gd:postcode>94043</gd:postcode>
      <gd:country>United States</gd:country>
      <gd:formattedAddress>
        1600 Amphitheatre Pkwy Mountain View
      </gd:formattedAddress>
    </gd:structuredPostalAddress>
  </entry>

as

{ updated: [Getter],
  contacts:
   [ { name:
        { full: [Getter],
          given: [Getter/Setter],
          family: [Getter/Setter] },
       emails:
        [ { label: [Getter/Setter],
            address: [Getter/Setter] },
          { label: [Getter/Setter],
            address: [Getter/Setter] } ] } ] }