-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
24 changed files
with
564 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
max_line_length = 0 | ||
trim_trailing_whitespace = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Example Contributing Guidelines | ||
|
||
This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
* **I'm submitting a ...** | ||
[ ] bug report | ||
[ ] feature request | ||
[ ] question about the decisions made in the repository | ||
[ ] question about how to use this project | ||
|
||
* **Summary** | ||
|
||
|
||
|
||
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...) | ||
|
||
|
||
|
||
* **What is the current behavior?** (You can also link to an open issue here) | ||
|
||
|
||
|
||
* **What is the new behavior (if this is a feature change)?** | ||
|
||
|
||
|
||
* **Other information**: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
node_modules | ||
build | ||
test | ||
src/**.js | ||
.idea/* | ||
|
||
coverage | ||
.nyc_output | ||
*.log | ||
|
||
package-lock.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
src | ||
test | ||
tsconfig.json | ||
tsconfig.module.json | ||
tslint.json | ||
.travis.yml | ||
.github | ||
.prettierignore | ||
.vscode | ||
build/docs | ||
**/*.spec.* | ||
coverage | ||
.nyc_output | ||
*.log |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# package.json is formatted by package managers, so we ignore it here | ||
package.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
'use strict'; | ||
const meow = require('meow'); | ||
const path = require('path'); | ||
|
||
const tsFile = getTSFile(); | ||
const jsFile = TS2JS(tsFile); | ||
|
||
replaceCLIArg(tsFile, jsFile); | ||
|
||
// Ava debugger | ||
require('ava/profile'); | ||
|
||
/** | ||
* get ts file path from CLI args | ||
* | ||
* @return string path | ||
*/ | ||
function getTSFile() { | ||
const cli = meow(); | ||
return cli.input[0]; | ||
} | ||
|
||
/** | ||
* get associated compiled js file path | ||
* | ||
* @param tsFile path | ||
* @return string path | ||
*/ | ||
function TS2JS(tsFile) { | ||
const srcFolder = path.join(__dirname, '..', 'src'); | ||
const distFolder = path.join(__dirname, '..', 'build', 'main'); | ||
|
||
const tsPathObj = path.parse(tsFile); | ||
|
||
return path.format({ | ||
dir: tsPathObj.dir.replace(srcFolder, distFolder), | ||
ext: '.js', | ||
name: tsPathObj.name, | ||
root: tsPathObj.root | ||
}); | ||
} | ||
|
||
/** | ||
* replace a value in CLI args | ||
* | ||
* @param search value to search | ||
* @param replace value to replace | ||
* @return void | ||
*/ | ||
function replaceCLIArg(search, replace) { | ||
process.argv[process.argv.indexOf(search)] = replace; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Project", | ||
// we test in `build` to make cleanup fast and easy | ||
"cwd": "${workspaceFolder}/build", | ||
// Replace this with your project root. If there are multiple, you can | ||
// automatically run the currently visible file with: "program": ${file}" | ||
"program": "${workspaceFolder}/src/cli/cli.ts", | ||
// "args": ["--no-install"], | ||
"outFiles": ["${workspaceFolder}/build/main/**/*.js"], | ||
"skipFiles": [ | ||
"<node_internals>/**/*.js", | ||
"${workspaceFolder}/node_modules/**/*.js" | ||
], | ||
"preLaunchTask": "npm: build", | ||
"stopOnEntry": true, | ||
"smartStep": true, | ||
"runtimeArgs": ["--nolazy"], | ||
"env": { | ||
"TYPESCRIPT_STARTER_REPO_URL": "${workspaceFolder}" | ||
}, | ||
"console": "externalTerminal" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Spec", | ||
"program": "${workspaceRoot}/.vscode/debug-ts.js", | ||
"args": ["${file}"], | ||
"skipFiles": ["<node_internals>/**/*.js"], | ||
// Consider using `npm run watch` or `yarn watch` for faster debugging | ||
// "preLaunchTask": "npm: build", | ||
// "smartStep": true, | ||
"runtimeArgs": ["--nolazy"] | ||
}] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
// "typescript.implementationsCodeLens.enabled": true | ||
// "typescript.referencesCodeLens.enabled": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 Christoph Witzany | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# musterroll | ||
|
||
A lightweight LDAP server for user management |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{ | ||
"name": "musterroll", | ||
"version": "1.0.0", | ||
"description": "A lightweight LDAP server for user management", | ||
"main": "build/main/index.js", | ||
"typings": "build/main/index.d.ts", | ||
"module": "build/module/index.js", | ||
"repository": "https://github.com/DoubleMalt/musterroll", | ||
"license": "MIT", | ||
"keywords": [], | ||
"scripts": { | ||
"describe": "npm-scripts-info", | ||
"build": "run-s clean && run-p build:*", | ||
"build:main": "tsc -p tsconfig.json", | ||
"build:module": "tsc -p tsconfig.module.json", | ||
"fix": "run-s fix:*", | ||
"fix:prettier": "prettier \"src/**/*.ts\" --write", | ||
"fix:tslint": "tslint --fix --project .", | ||
"test": "run-s build test:*", | ||
"test:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different", | ||
"test:unit": "nyc --silent ava", | ||
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"", | ||
"cov": "run-s build test:unit cov:html && opn coverage/index.html", | ||
"cov:html": "nyc report --reporter=html", | ||
"cov:send": "nyc report --reporter=lcov > coverage.lcov && codecov", | ||
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100", | ||
"doc": "run-s doc:html && opn build/docs/index.html", | ||
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs", | ||
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json", | ||
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs", | ||
"version": "standard-version", | ||
"reset": "git clean -dfx && git reset --hard && npm i", | ||
"clean": "trash build test", | ||
"all": "run-s reset test cov:check doc:html", | ||
"prepare-release": "run-s all version doc:publish", | ||
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('musterroll must be installed with Yarn: https://yarnpkg.com/')\"" | ||
}, | ||
"scripts-info": { | ||
"info": "Display information about the package scripts", | ||
"build": "Clean and rebuild the project", | ||
"fix": "Try to automatically fix any linting problems", | ||
"test": "Lint and unit test the project", | ||
"watch": "Watch and rebuild the project on save, then rerun relevant tests", | ||
"cov": "Rebuild, run tests, then create and open the coverage report", | ||
"doc": "Generate HTML API documentation and open it in a browser", | ||
"doc:json": "Generate API documentation in typedoc JSON format", | ||
"version": "Bump package.json version, update CHANGELOG.md, tag release", | ||
"reset": "Delete all untracked files and reset the repo to the last commit", | ||
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release" | ||
}, | ||
"engines": { | ||
"node": ">=8.9" | ||
}, | ||
"dependencies": { | ||
"sha.js": "^2.4.11" | ||
}, | ||
"devDependencies": { | ||
"ava": "1.0.0-beta.7", | ||
"codecov": "^3.1.0", | ||
"cz-conventional-changelog": "^2.1.0", | ||
"gh-pages": "^2.0.1", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^13.1.0", | ||
"opn-cli": "^4.0.0", | ||
"prettier": "^1.15.2", | ||
"standard-version": "^4.4.0", | ||
"trash-cli": "^1.4.0", | ||
"tslint": "^5.11.0", | ||
"tslint-config-prettier": "^1.17.0", | ||
"tslint-immutable": "^5.0.0", | ||
"typedoc": "^0.13.0", | ||
"typescript": "^3.1.6" | ||
}, | ||
"ava": { | ||
"failFast": true, | ||
"files": [ | ||
"build/main/**/*.spec.js" | ||
], | ||
"sources": [ | ||
"build/main/**/*.js" | ||
] | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "cz-conventional-changelog" | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true | ||
}, | ||
"nyc": { | ||
"exclude": [ | ||
"**/*.spec.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from './lib/async'; | ||
export * from './lib/hash'; | ||
export * from './lib/number'; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// tslint:disable:no-expression-statement | ||
import test from 'ava'; | ||
import { asyncABC } from './async'; | ||
|
||
test('getABC', async t => { | ||
t.deepEqual(await asyncABC(), ['a', 'b', 'c']); | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/** | ||
* A sample async function (to demo Typescript's es7 async/await downleveling). | ||
* | ||
* ### Example (es imports) | ||
* ```js | ||
* import { asyncABC } from 'typescript-starter' | ||
* console.log(await asyncABC()) | ||
* // => ['a','b','c'] | ||
* ``` | ||
* | ||
* ### Example (commonjs) | ||
* ```js | ||
* var double = require('typescript-starter').asyncABC; | ||
* asyncABC().then(console.log); | ||
* // => ['a','b','c'] | ||
* ``` | ||
* | ||
* @returns a Promise which should contain `['a','b','c']` | ||
*/ | ||
export async function asyncABC(): Promise<ReadonlyArray<string>> { | ||
function somethingSlow(index: 0 | 1 | 2): Promise<string> { | ||
const storage = 'abc'.charAt(index); | ||
return new Promise<string>(resolve => | ||
// later... | ||
resolve(storage) | ||
); | ||
} | ||
const a = await somethingSlow(0); | ||
const b = await somethingSlow(1); | ||
const c = await somethingSlow(2); | ||
return [a, b, c]; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// tslint:disable:no-expression-statement no-object-mutation | ||
import test, { Macro } from 'ava'; | ||
import { sha256, sha256Native } from './hash'; | ||
|
||
const hash: Macro = (t, input: string, expected: string) => { | ||
t.is(sha256(input), expected); | ||
t.is(sha256Native(input), expected); | ||
}; | ||
|
||
hash.title = (providedTitle: string, input: string, expected: string) => | ||
`${providedTitle}: ${input} => ${expected}`; | ||
|
||
test( | ||
'sha256', | ||
hash, | ||
'test', | ||
'9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08' | ||
); |
Oops, something went wrong.