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
- Host: GitHub
- URL: https://github.com/zephraph/namezpace
- Owner: zephraph
- Created: 2015-10-17T04:31:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-18T13:12:38.000Z (almost 8 years ago)
- Last Synced: 2025-01-04T07:25:53.991Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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');
```