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

xtypejs-extension-custom-types

v0.1.1

Published

xtypejs Extension - Custom Types

Downloads

3

Readme

xtypejs Extension - Custom Types

This extension provides the xtypejs custom types functionality, by providing the xtypejs registerType API method.

Installation with npm

npm install xtypejs-extension-custom-types --save

NodeJs import and setup

var xtype = require('xtypejs');
var xtypejsCustomTypesExtension = require('xtypejs-extension-custom-types');

// xtype.ext.registerType method is NOT available here

xtype.ext.registerExtension(xtypejsCustomTypesExtension);

// xtype.ext.registerType method is now available here

HTML script tag import and setup

Include the extension script after the xtypejs script to automatically register the extension into xtypejs without exporting any globals. This relies on xtypejs being available in the xtype global variable.

<script src="path/to/xtype.js"></script>
<script src="path/to/xtypejs-extension-custom-types.js"></script>

<script>
    // xtype.ext.registerType method is available here
</script>

If the extension script needs to be included before the xtypejs script, or the xtype global is not available (or is using a different variable name) when the extension script is included, the extension will be exported instead to a global variable named xtypejsCustomTypesExtension, which must then be manually registered into xtypejs as an extension.

<!--
    Assume 'xtype' global variable not available here. The following
    exports global variable 'xtypejsCustomTypesExtension'
-->
<script src="path/to/xtypejs-extension-custom-types.js"></script>

<!-- Other things here... -->

<script>
    // Assume xtypejs later available here in variable 'myXtype'
    myXtype.ext.registerExtension(xtypejsCustomTypesExtension);

    // xtype.ext.registerType method is now available here
</script>

Usage

For usage details, see the xtypejs registerType API method documentation.

Preventing name collisions

If the HTML script tag was used to import the extension script in a browser environment and in the absence of xtypejs in the xtype global variable, the extension will be exported to a global variable named xtypejsCustomTypesExtension. The noConflict method of the exported extension can be used to reassign the extension to a different namespace or variable name, and return the global xtypejsCustomTypesExtension variable to its previous value prior to including the extension script.

var myExtension = xtypejsCustomTypesExtension.noConflict();

/*
 * myExtension is now xtypejsCustomTypesExtension, while 
 * xtypejsCustomTypesExtension variable is now returned to
 * its original value prior to inclusion of the extension script.
 */