An open API service indexing awesome lists of open source software.

https://github.com/zephraph/namezpace

A node namespacing utility with a twist
https://github.com/zephraph/namezpace

Last synced: about 2 months ago
JSON representation

A node namespacing utility with a twist

Awesome Lists containing this project

README

        

# namezpace

**Note: This package is still under development. Use at your own risk.**

```javascript
// File 1
import Namespace from 'namezpace';
Namespace('my.app.modules').hello = 'world';
```

```javascript
// File 2
import { local.my.app.modules as modules } from 'namezpace';
console.assert(modules.hello === 'world');
```