diff options
| author | Jannis R <mail@jannisr.de> | 2020-05-01 23:21:22 +0200 |
|---|---|---|
| committer | Jannis R <mail@jannisr.de> | 2020-05-02 16:35:49 +0200 |
| commit | fff4d0666f44781a7998174dbc700322f496676d (patch) | |
| tree | 359d72b5dcc4c12c60881c9fd4c3076f3d6c3849 | |
init
| -rw-r--r-- | .editorconfig | 16 | ||||
| -rw-r--r-- | .gitignore | 10 | ||||
| -rw-r--r-- | example.js | 3 | ||||
| -rw-r--r-- | index.js | 3 | ||||
| -rw-r--r-- | license.md | 5 | ||||
| -rw-r--r-- | package.json | 29 | ||||
| -rw-r--r-- | readme.md | 29 |
7 files changed, 95 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d9e8230 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# editorconfig.org +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[**.{js, json}] +indent_style = tab +indent_size = 4 + +[**.{yml,yaml}] +indent_style = spaces +indent_size = 2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c3e277b --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +.DS_Store +Thumbs.db + +.nvm-version +node_modules +pnpm-debug.log + +/package-lock.json +/yarn.lock +/shrinkwrap.yaml diff --git a/example.js b/example.js new file mode 100644 index 0000000..eba3ac4 --- /dev/null +++ b/example.js @@ -0,0 +1,3 @@ +'use strict' + +// todo diff --git a/index.js b/index.js new file mode 100644 index 0000000..eba3ac4 --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ +'use strict' + +// todo diff --git a/license.md b/license.md new file mode 100644 index 0000000..d3f5378 --- /dev/null +++ b/license.md @@ -0,0 +1,5 @@ +Copyright (c) 2020, Jannis R + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/package.json b/package.json new file mode 100644 index 0000000..ed35932 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "@derhuerst/gemini", + "description": "An experimental Gemini server.", + "version": "1.0.0", + "main": "index.js", + "files": [ + "index.js", + "example.js" + ], + "keywords": [ + "gemini", + "protocol", + "server" + ], + "author": "Jannis R <mail@jannisr.de>", + "homepage": "https://github.com/derhuerst/todo-name", + "repository": "derhuerst/todo-name", + "bugs": "https://github.com/derhuerst/todo-name/issues", + "license": "ISC", + "engines": { + "node": ">=12" + }, + "dependencies": { + }, + "devDependencies": { + }, + "scripts": { + } +} diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..4a2c50b --- /dev/null +++ b/readme.md @@ -0,0 +1,29 @@ +# gemini + +**An experimental [Gemini](https://gemini.circumlunar.space) server.** + +[](https://www.npmjs.com/package/@derhuerst/gemini) +[](https://travis-ci.org/derhuerst/gemini) + + +[](https://gitter.im/derhuerst) +[](https://patreon.com/derhuerst) + + +## Installation + +```shell +npm install @derhuerst/gemini +``` + + +## Usage + +```js +todo +``` + + +## Contributing + +If you have a question or need support using `gemini`, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, use [the issues page](https://github.com/derhuerst/gemini/issues). |
