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

@compassinformatics/cpsi-mapview

v1.4.0

Published

An application using GeoExt and BasiGX

Downloads

7

Readme

cpsi-mapview

Build Status Coverage Status

Check out the latest deployed version at https://compassinformatics.github.io/cpsi-mapview/

Project setup

This steps assume you have Sencha CMD v6.6 installed on your system and a copy of ExtJS v6.2.0 downloaded. The project has been tested using Node v16+ - this is the minimum recommended version.

Clone this repository

git clone https://github.com/compassinformatics/cpsi-mapview.git
cd cpsi-mapview

Ensure that Sencha Cmd is available on the command line. Examples for Windows:

Powershell:

$env:Path = "D:\Tools\Sencha\Cmd\6.6.0.13;" + $env:Path

Command prompt:

SET PATH=D:\Tools\Sencha\Cmd\6.6.0.13;%PATH%

Now add your ExtJS library. The project is tested with both 6.2 (GPL), and 6.7 (commercial license).

sencha app upgrade /path/to/local/extjs6.2

Alternatively place a junction (shortcut) to point to an existing ExtJS folder:

# Command Prompt
mklink /D ext D:\Tools\Sencha\ext-6.2.0

# PowerShell
new-item -itemtype symboliclink -path . -name ext -value D:\Tools\Sencha\ext-6.2.0

Install dependencies:

npm i

Start dev-server

sencha app watch

Open http://localhost:1841 in your browser.

Override dependencies

To debug against the main branches (or a specific commit) of dependencies, update the classpath property in app.json to use the lib folder instead of node_modues, and run the following command to clone git submodules:

git submodule update --init --recursive

Docker install

If a simple local server is needed to omit CORS problems, you can use the one configured in docker-compose.yml. Fill placeholders in nginx.conf with appropriate values and start nginx server beside sencha dev server simply by:

docker-compose up

The application is available via http://localhost:81/ afterwards.

For running tests various dependencies listed in package.json need to be installed. Run the following:

npm install

Testing

Navigate to the project folder and run the following:

npm test

Note - if there are errors such as BasiGX not defined, ensure that the submodules have been created using git submodule update --init --recursive.

To have tests continually running while making changes:

npm run test:watch

To open in a browser and leave the browser open (to review UI components, debug, etc.). --auto-watch prevents application JS files being cached.

karma start --browsers Chrome --single-run=False --debug --auto-watch

See also https://glebbahmutov.com/blog/debugging-karma-unit-tests/

To run for single test file you can use the grep option:

karma start --single-run --grep 'CpsiMapview.factory.Layer'

Production Builds

sencha app build
cd cpsi-mapview\build\production\CpsiMapview
python -m http.server 8888
http://localhost:8888