This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"nodeId": "148456734", | |
"parentId": "", | |
"nodeContent": { | |
"nodeId": "148456734", | |
"nodeType": "FsVirtualRootNode", | |
"fieldId": "148456734", | |
"label": ["vRoot", "(A) A->B->C-D->E->A (logi...", " if all"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tags": { | |
"allowUnknownTags": true, | |
"dictionaries": ["jsdoc"] | |
}, | |
"source": { | |
"include": ["src"], | |
"includePattern": ".js$", | |
"excludePattern": "(node_modules/|docs)" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#inspired by: | |
#https://www.wolfe.id.au/2014/02/01/getting-a-new-node-project-started-with-npm/ | |
# Thank you Mark Wolfe | |
>>>make foreign repository '[project name].git' | |
$ mkdir [project name] | |
$ cd [project name] | |
$ git init | |
$ git remote add origin ssh://user@server:port/dir/to/[project name].git # (from 'make foreign repo') | |
$ wget https://gist.githubusercontent.com/terary/6f54a250f08d68c59bd33e781a8e7614/raw/4554fa9364705139be4b0603104da4b53301f2bb/Make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
# Runtime data | |
pids | |
*.pid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REPORTER = spec | |
all: jshint test | |
test: | |
@NODE_ENV=test ./node_modules/.bin/mocha --recursive --reporter $(REPORTER) --timeout 3000 | |
jshint: | |
jshint lib examples test index.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
paths:{ | |
orgID: { | |
name: "orgID", | |
isSearchable:true, | |
isProjectable: false, | |
isUpdatable: false, | |
isInsertable: true, | |
isRequired: true , | |
required:true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"paths": { | |
"orgID": { | |
"type": "String", | |
"isSearchable": true, | |
"isRequired": true, | |
"isInsertable": true, | |
"isUpdatable": false, | |
"required": true, | |
"maxlength": 50, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here is something |