Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pomelo-loader

Package Overview
Dependencies
Maintainers
5
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pomelo-loader

pomelo中使用Convention over Configuration的形式管理工程目录,不同的功能按约定放在不同的目录下。pomelo-loader为pomelo提供了按目录加载模块的功能。

  • 0.0.6
  • npm
  • Socket score

Version published
Weekly downloads
79
decreased by-72.76%
Maintainers
5
Weekly downloads
 
Created
Source

#pomelo-loader - loader module for pomelo

Load codes for pomelo based on the convention over configuration rules.

pomelo-rpc could load modules in batch but not load the sub-directory recursively.

  • Tags: node.js

##Regulation Module name

Module would use the filename by default. For example: load lib/a.js and the return result would be: {a: require('./lib/a')}

It would use the name if the module with a name property. For example

a.js
exports.name = 'test';

the return result would be: {test: require('./lib/a')}

Module definiation

If the module exported as a function, pomelo-loader would take it as a factory method and generate a new instance of module by calling the function. And it would return the module directly for other situation.

module.exports = function(context) {
	return {};	// return some module instance
};

##Installation

npm install pomelo-loader

##Usage

var Loader = require('pomelo-loader');

var res = Loader.load('.');
console.log('res: %j', res);

##API ###Loader.load(path, context) Load all modules in the path. ####Parameters

  • path loaded path
  • context if the module provides a factory method, the context would be pass as a parameter as the factory method.

FAQs

Package last updated on 13 Dec 2013

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc