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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@emfts/core

v0.1.0

Published

TypeScript interfaces for Eclipse EMF Core

Readme

EMFTS - Eclipse Modeling Framework for TypeScript

TypeScript interfaces converted from Eclipse EMF Core.

Overview

This package provides TypeScript interface definitions for the Eclipse Modeling Framework (EMF) Core metamodel. These interfaces enable type-safe modeling in TypeScript/JavaScript environments.

Core Interfaces

Metamodel Hierarchy

EObject (root of all model objects)
  └─ EModelElement (has annotations)
      └─ ENamedElement (has name)
          ├─ EClassifier (abstract)
          │   ├─ EClass (modeled class)
          │   └─ EDataType (primitive/data types)
          ├─ EStructuralFeature (abstract)
          │   ├─ EAttribute (data-valued features)
          │   └─ EReference (object-valued features)
          ├─ EPackage (package container)
          └─ EOperation (class operation)

Key Concepts

  • EObject: Base interface for all model objects, provides reflective API
  • EClass: Metamodel representation of a class (like java.lang.Class)
  • EPackage: Container for classifiers, identified by namespace URI
  • EFactory: Creates instances of EClasses
  • Resource: Persistent document containing model objects
  • ResourceSet: Collection of related resources

Usage Example

import { EPackage, EClass, EFactory, EObject } from 'emfts';

// Access package from registry
const pkg: EPackage = EPackage.Registry.INSTANCE.getEPackage('http://example.com/mymodel');

// Get classifier
const personClass: EClass = pkg.getEClassifier('Person') as EClass;

// Create instance
const factory: EFactory = pkg.getEFactoryInstance();
const person: EObject = factory.create(personClass);

// Set value reflectively
const nameAttr = personClass.getEStructuralFeature('name');
person.eSet(nameAttr, 'John Doe');

// Get value reflectively
const name = person.eGet(nameAttr);
console.log(name); // 'John Doe'

Features

  • ✅ Full EMF Core metamodel interfaces
  • ✅ Type-safe reflective API
  • ✅ Resource and ResourceSet management
  • ✅ URI handling
  • ✅ Package registry pattern
  • ✅ Factory pattern for object creation

Architecture

The interfaces follow the same design as Eclipse EMF:

  1. Metamodel Layer: EClass, EAttribute, EReference (describe structure)
  2. Model Layer: EObject instances (actual data)
  3. Persistence Layer: Resource, ResourceSet (load/save)
  4. Registry Layer: EPackage.Registry (global package lookup)

Building

npm install
npm run build

License

Eclipse Public License 2.0 (EPL-2.0)

Original Source

These interfaces are TypeScript conversions of:

  • Eclipse EMF Core: https://github.com/eclipse-emf/org.eclipse.emf
  • Package: org.eclipse.emf.ecore

Notes

  • This is a pure interface package - no implementations included
  • Designed for building EMF-compatible tools in TypeScript
  • Suitable for code generators, model validators, and runtime frameworks