
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
ember-data-arcgis-opendata
Advanced tools
Ember Data model and adapters for the ArcGIS OpenData API
This is beta software. The intention of this add-on is to enable an application to work with the ArcGIS Open Data api. It is being built incrementally, and does not currently encompass the entire API.
Create a project using ember-cli. If you have an existing ember-cli project, skip this step.
$ ember new my-new-app
Add Torii, the ArcGIS torii provider and this add-on to the project
$ ember install torii
$ ember install torii-provider-arcgis
$ ember install ember-data-arcgis-opendata
Now edit /config/environment.js to add your Torii provider configuration.
module.exports = function(environment) {
  var ENV = {
   // ... other ENV config stuff here
   torii:{
      sessionServiceName: 'session',
      providers: {
        'arcgis-oauth-bearer': {
          apiKey: 'APP CLIENT ID GOES HERE',
          portalUrl: 'https://someportal.com' //optional - defaults to https://www.arcgis.com
        }
      }
    }
  };
  return ENV;
};
The application will now have access to the following models:
The model will automatically be available to the Ember Data store in the consuming application. Please see the Ember Guides for details on how to find records or other operations.
FAQs
Ember Data model and adapters for the ArcGIS OpenData API
The npm package ember-data-arcgis-opendata receives a total of 0 weekly downloads. As such, ember-data-arcgis-opendata popularity was classified as not popular.
We found that ember-data-arcgis-opendata demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.