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

earthengine-connector

v0.0.9

Published

Run local NodeJS scripts using CommonJS modules in Earth Engine

Downloads

22

Readme

Logo Earth Engine Connector

Run local NodeJS scripts using CommonJS modules in the Earth Engine playground.

Requirements

Initial Install

Quick Start Video

First, you will need the Earth Engine connector file server. Install via NPM.

> npm install -g earthengine-connector

Second, you need the Earth Engine Connector Google Chrome Plugin. Click the link to install.

Setup

Now start the up the server in the directory where your local Earth Engine scripts live. Alternatively you can pass a directory to the server as the first argument.

> js-ee [dir]

You can test the server is working by visiting http://127.0.0.1:9812 in your browser.

Usage

Visit http://code.earthengine.google.com with the Chrome extension installed and js-ee server running. There are some examples tutorial scripts in the examples dir you can serve with js-ee for testing.

At the bottom right corner for the Earth Engine playground you should see a upload icon button. Click it to see all files from the directory you are serving.
Click any file to load.

At any time you and reload the file list by clicking the refresh icon below the file list. You can refresh a loaded file by clicking the main refresh icon next to the upload icon. This icon only shows after a file is loaded and the file selector window is closed.

Writing scripts

You are now free to break your EE scripts into multiple files using the NodeJS require() function to import other files. You can pull and publish to NPM as well, though be warned, all imported JS code needs to be able to run inside the EE playground. Finally, you can now store your scripts in Github, Bitbucket or other common code repositories.

Connection Issues

If http://127.0.0.1:9812 is loading but your are still see the message Error connecting the JS-EE server, check the right side of the address bar. If you see a shield with a slash through it, click the icon and allow mixed content to load.