From fff4d0666f44781a7998174dbc700322f496676d Mon Sep 17 00:00:00 2001 From: Jannis R Date: Fri, 1 May 2020 23:21:22 +0200 Subject: init --- .editorconfig | 16 ++++++++++++++++ .gitignore | 10 ++++++++++ example.js | 3 +++ index.js | 3 +++ license.md | 5 +++++ package.json | 29 +++++++++++++++++++++++++++++ readme.md | 29 +++++++++++++++++++++++++++++ 7 files changed, 95 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 example.js create mode 100644 index.js create mode 100644 license.md create mode 100644 package.json create mode 100644 readme.md 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 ", + "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.** + +[![npm version](https://img.shields.io/npm/v/@derhuerst/gemini.svg)](https://www.npmjs.com/package/@derhuerst/gemini) +[![build status](https://api.travis-ci.org/derhuerst/gemini.svg?branch=master)](https://travis-ci.org/derhuerst/gemini) +![ISC-licensed](https://img.shields.io/github/license/derhuerst/gemini.svg) +![minimum Node.js version](https://img.shields.io/node/v/@derhuerst/gemini.svg) +[![chat with me on Gitter](https://img.shields.io/badge/chat%20with%20me-on%20gitter-512e92.svg)](https://gitter.im/derhuerst) +[![support me on Patreon](https://img.shields.io/badge/support%20me-on%20patreon-fa7664.svg)](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). -- cgit v1.3