MCPcopy Index your code
hub / github.com/CanopyTax/sofe

github.com/CanopyTax/sofe @v3.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v3.0.0 ↗ · + Follow
27 symbols 54 edges 28 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Project status

Sofe is a plugin for systemjs@0.21, but the latest version of systemjs is >3. The new versions of systemjs have the equivalent of sofe built into systemjs itself, via import maps. Because of this, we encourage that you use systemjs@>=3 + import maps, instead of using systemjs@0.21 + sofe. See this file for an example of what the new alternative looks like. For the equivalent of sofe's local storage overrides, check out import-map-overrides.

sofe

Service Oriented Front-end - Sofe is a SystemJS plugin that resolves a module name to a fully qualified url at runtime.

npm version Build Status Code Coverage

Sofe allows developers to avoid building monolothic front-end web applications and instead build software on top of micro-services. Sofe is a JavaScript library that enables independently deployable JavaScript services to be retrieved at run-time in the browser.

More on the motivation for SOA in the browser

Getting Started

  1. Setup SystemJS and JSPM
  2. Configure SystemJS to use the sofe plugin:

bash jspm install npm:sofe 3. Load sofe services:

javascript System.import('sofe-hello-world!sofe') .then(hello => hello()) // Sofe is properly setup if the browser alerts a hello world. // You have successfully loaded the hello-world sofe service. By default, any npm package with a UMD build can be a sofe service. Simply load the service by the package name:

javascript System.import('backbone!sofe') .then(Backbone => new Backbone.View({}));

Create your own service

By default, all npm packages are loaded through npm (unpkg). While this is convenient, it isn't always what you want to do for your own services. You can provide a custom location for where your service distributable is located by adding a sofe property to your package.json:

{
  "name": "my-service",
  "version": "1.0.0",
  "sofe": {
    "url": "https://cdn.some-location.com/my-service-1.0.0.js"
  }
}

Republish a new sofe URL to npm whenever you want to update the location of your service distributable.

Services in production

Create your own private service by telling sofe how to resolve your service name. Add to your systemjs configuration a manifest option to a sofe property or auto-discover services by loading a remote manifest of available services:

System.config({
  sofe: {
    manifest: {
      "someInternalService": "http://somelocation.com/service-1.0.0.js"
    },
    manifestUrl: 'https://somelocation.com/available-services.json'
  }
});

Learn more about production configuration within the API documentation

Examples

Examples are available at sofe.surge.sh or you can run them locally

Tools

  1. sofe-inspector - Developer tool for inspecting and overriding available sofe services
  2. sofe-babel-plugin - A babel plugin for production sofe workflows with webpack
  3. sofe-deplanifester - A manifest deployment service for sofe
  4. sofe-hello-world - A simple sofe-service to say hello

License

Copyright 2016 CanopyTax

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Core symbols most depended-on inside this repo

resolve
called by 15
src/hooks.js
stepMiddleware
called by 3
src/middleware.js
xhrFailed
called by 2
src/registries.js
addServiceOverride
called by 2
src/hooks.js
getManifest
called by 2
src/manifest.js
xhrFailed
called by 2
src/manifest.js
getRegistryUrl
called by 1
src/registries.js
getUrlFromRegistry
called by 1
src/registries.js

Shape

Function 27

Languages

TypeScript100%

Modules by API surface

src/hooks.js8 symbols
src/manifest.js5 symbols
src/registries.js4 symbols
src/utils.js3 symbols
src/sofe.js3 symbols
test/remote.test.js2 symbols
src/middleware.js2 symbols

For agents

$ claude mcp add sofe \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact