cjdns admin
1.0.0
用于通过 UDP 处理 CJDNS 管理界面的 Nodejs 模块。它具有一致、稳健且易于使用的特点。
跳:
它可以通过 npm 获得
npm install cjdns-admin
createAdmin函数返回一个 EventEmitter4,其中包含每个管理函数及其备用函数的成员。它还包含处理分页功能的自动分页的成员。
选项:
用法:
var cjdnsAdmin = require ( 'cjdns-admin' ) ,
admin ,
channel ;
// create a new Admin
admin = cjdnsAdmin . createAdmin ( {
ip : '127.0.0.1' ,
port : 11234 ,
password : 'my cjdns password'
} ) ;
// ping the admin
channel = admin . ping ( ) ;
// create a response handler
function pingResponse ( res ) {
// process ping response
console . dir ( res ) ;
}
// handle the response
admin . on ( channel , pingResponse ) ; | 原来的 | 备用 |
|---|---|
| Admin_asyncEnabled | admin.asyncEnabled |
| Admin_availableFunctions | admin.availableFunctions |
| admin.availableFunctionsPaged | |
| AdminLog_logMany | log.logMany |
| 管理日志_订阅 | 日志订阅 |
| 管理日志_订阅 | 日志订阅 |
| AdminLog_取消订阅 | 取消订阅日志 |
| Allocator_bytes已分配 | 分配器.bytes已分配 |
| 分配器快照 | 分配器.快照 |
| 授权密码_add | 授权密码.add |
| 授权密码列表 | 授权密码列表 |
| 授权密码_删除 | 授权密码.remove |
| 核心退出 | 核心退出 |
| Core_initTunnel | core.initTunnel |
| 核心进程号 | 核心.pid |
| InterfaceController_disconnectPeer | 接口Controller.disconnectPeer |
| InterfaceController_peerStats | 接口控制器.peerStats |
| 接口控制器.peerStatsPaged | |
| IpTunnel_allowConnection | ipTunnel.allowConnection |
| IpTunnel_connectTo | ipTunnel.connectTo |
| IpTunnel_listConnections | ipTunnel.listConnections |
| IpTunnel_removeConnection | ipTunnel.removeConnection |
| IpTunnel_showConnection | ipTunnel.showConnection |
| Janitor_dumpRumorMill | janitor.dumpRumorMill |
| 记忆 | 管理内存 |
| nodeStore.dumpTablePaged | |
| NodeStore_getLink | 节点存储.getLink |
| NodeStore_getRouteLabel | nodeStore.getRouteLabel |
| NodeStore_nodeForAddr | 节点存储.nodeForAddr |
| 平 | 管理.ping |
| RouterModule_findNode | routerModule.findNode |
| RouterModule_getPeers | routerModule.getPeers |
| RouterModule_lookup | routerModule.lookup |
| RouterModule_nextHop | routerModule.nextHop |
| RouterModule_pingNode | routerModule.pingNode |
| SearchRunner_showActiveSearch | searchRunner.showActiveSearch |
| SearchRunner_search | searchRunner.search |
| Security_checkPermissions | security.checkPermissions |
| 安全_chroot | 安全.chroot |
| 安全获取用户 | 安全.getUser |
| 安全_nofiles | 安全.nofiles |
| 安全_noforks | 安全.noforks |
| 安全_seccomp | 安全.seccomp |
| 安全设置完成 | 安全.setupComplete |
| 安全设置用户 | 安全性.setUser |
| SessionManager_getHandles | sessionManager.getHandles |
| sessionManager.getHandlesPaged | |
| SessionManager_sessionStats | sessionManager.sessionStats |
| SwitchPinger_ping | switchPinger.ping |
| UDPInterface_beginConnection | udpInterface.beginConnection |
| UDP接口_new | udp接口.new |
用法:
channel = admin . asyncEnabled ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
page : 0
} ;
channel = admin . availableFunctions ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
count : 0
} ;
channel = admin . log . logMany ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
file : '' ,
level : '' ,
line : 0
} ;
channel = admin . log . subscribe ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . log . subscriptions ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
streamId : ''
} ;
channel = admin . log . unsubscribe ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . allocator . bytesAllocated ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
includeAllocations : 0
} ;
channel = admin . allocator . snapshot ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
authType : 0 ,
ipv6 : '' ,
password : '' ,
user : ''
} ;
channel = admin . authorizedPasswords . add ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . authorizedPasswords . list ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
user : ''
} ;
channel = admin . authorizedPasswords . remove ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . core . exit ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
desiredTunName : ''
} ;
channel = admin . core . initTunnel ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . core . pid ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
pubkey : ''
} ;
channel = admin . interfaceController . disconnectPeer ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
page : 0
} ;
channel = admin . interfaceController . peerStats ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
ip4Address : '' ,
ip4Prefix : 0 ,
ip6Address : '' ,
ip6Prefix : 0 ,
publicKeyOfAuthorizedNode : ''
} ;
channel = admin . ipTunnel . allowConnection ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
publicKeyOfNodeToConnectTo : ''
} ;
channel = admin . ipTunnel . connectTo ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . ipTunnel . listConnections ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
connection : 0
} ;
channel = admin . ipTunnel . removeConnection ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
connection : 0
} ;
channel = admin . ipTunnel . showConnection ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
mill : '' ,
page : 0
} ;
channel = admin . janitor . dumpRumorMill ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . memory ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
page : 0
} ;
channel = admin . nodeStore . dumpTable ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
linkNum : 0 ,
parent : ''
} ;
channel = admin . nodeStore . getLink ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
pathParentToChild : '' ,
pathToParent : ''
} ;
channel = admin . nodeStore . getRouteLabel ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
ip : ''
} ;
channel = admin . nodeStore . nodeForAddr ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . ping ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
nodeToQuery : '' ,
target : '' ,
timeout : 0
} ;
channel = admin . routerModule . findNode ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
nearbyPath : '' ,
path : '' ,
timeout : 0
} ;
channel = admin . routerModule . getPeers ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
address : ''
} ;
channel = admin . routerModule . lookup ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
nodeToQuery : '' ,
target : '' ,
timeout : 0
} ;
channel = admin . routerModule . nextHop ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
path : '' ,
timeout : 0
} ;
channel = admin . routerModule . pingNode ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
ipv6 : '' ,
maxRequests : 0
} ;
channel = admin . searchRunner . search ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
number : 0
} ;
channel = admin . searchRunner . showActiveSearch ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . security . checkPermissions ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
root : ''
} ;
channel = admin . security . chroot ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
user : ''
} ;
channel = admin . security . getUser ( options ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . security . nofiles ( ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . security . noforks ( ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . security . seccomp ( ) ;
admin . once ( channel , processResponse ) ;用法:
channel = admin . security . setupComplete ( ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
keepNetAdmin : 0 ,
uid : 0
} ;
channel = admin . security . setUser ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
page : 0
} ;
channel = admin . sessionManager . getHandles ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
handle : 0
} ;
channel = admin . sessionManager . sessionStats ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
data : '' ,
keyPing : 0 ,
path : '' ,
timeout : 0
} ;
channel = admin . switchPinger . ping ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
address : '' ,
interfaceNumber : 0 ,
password : '' ,
publicKey : ''
} ;
channel = admin . udpInterface . beginConnection ( options ) ;
admin . once ( channel , processResponse ) ;用法:
var channel ,
options ;
options = {
bindAddress : ''
} ;
channel = admin . udpInterface . new ( options ) ;
admin . once ( channel , processResponse ) ; 分页函数将获取所有页面并返回结果。传递选项是可选的。回调接收err和results作为参数,两者都是Array类型。
function pagedCallback ( err , results ) {
if ( err ) {
return console . log ( 'paged callback error' , err ) ;
}
console . log ( 'paged function results array' , ) ;
}
admin . availableFunctionsPaged ( pagedCallback ) ;
admin . interfaceController . peerStatsPaged ( pagedCallback ) ;
admin . nodeStore . dumpTablePaged ( pagedCallback ) ;
admin . sessionManager . getHandlesPaged ( pagedCallback ) ;
// mill property is optional
admin . janitor . dumpRumorMillPaged ( { mill : '' } , pagedCallback ) ; 创建测试将查找的环境变量:
# cjdns development environment
export CJDNS_ADMIN_PORT=11234
export CJDNS_ADMIN_IP=127.0.0.1
export CJDNS_ADMIN_PASSWORD=from your cjdroute config
工具可通过 npm 脚本获得。请参阅scripts部分中的package.json 。
npm run lint
# test offline functionality
npm test
npm test -- --watch
# test online, UDP, and potentially dangerous functions
# on an actual node
npm run test-live
npm run test-live -- --watch
# render docs to html for testing
npm run doc-gen
npm run doc-watch