Skip to content

Commit d33f363

Browse files
authored
init
1 parent a2d42ca commit d33f363

File tree

7 files changed

+19
-30
lines changed

7 files changed

+19
-30
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ assignees: ''
77

88
---
99

10-
- [ ] The [readme](https://github.com/PrismarineJS/prismarine-template/README.md) doesn't contain a resolution to my issue
11-
- [ ] The [example](https://github.com/PrismarineJS/prismarine-template/example.js) doesn't contain a resolution to my issue
10+
- [ ] The [readme](https://github.com/PrismarineJS/node-nethernet/README.md) doesn't contain a resolution to my issue
11+
- [ ] The [example](https://github.com/PrismarineJS/node-nethernet/example.js) doesn't contain a resolution to my issue
1212

1313
<!-- To mark the checkbox, insert `x` into it: [x] -->
1414

1515
## Versions
1616
- node: #.#.#
17-
- prismarine-template: #.#.#
17+
- node-nethernet: #.#.#
1818

1919
## Detailed description of a problem
2020
A clear and concise description of what the problem is.

.github/ISSUE_TEMPLATE/question.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ assignees: ''
77

88
---
99

10-
- [ ] The [readme](https://github.com/PrismarineJS/prismarine-template/README.md) doesn't contain a resolution to my issue
11-
- [ ] The [example](https://github.com/PrismarineJS/prismarine-template/example.js) doesn't contain a resolution to my issue
10+
- [ ] The [readme](https://github.com/PrismarineJS/node-nethernet/README.md) doesn't contain a resolution to my issue
11+
- [ ] The [example](https://github.com/PrismarineJS/node-nethernet/example.js) doesn't contain a resolution to my issue
1212

1313

1414
<!-- To mark the checkbox, insert `x` into it: [x] -->

.gitpod

-4
This file was deleted.

.gitpod.DockerFile

-8
This file was deleted.

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
# prismarine-template
2-
[![NPM version](https://img.shields.io/npm/v/prismarine-template.svg?logo=npm)](http://npmjs.com/package/prismarine-template)
3-
[![Build Status](https://img.shields.io/github/actions/workflow/status/PrismarineJS/prismarine-template/ci.yml.svg?label=CI&logo=github)](https://github.com/PrismarineJS/prismarine-template/actions?query=workflow%3A%22CI%22)
4-
[![Try it on gitpod](https://img.shields.io/static/v1.svg?label=try&message=on%20gitpod&color=brightgreen&logo=gitpod)](https://gitpod.io/#https://github.com/PrismarineJS/prismarine-template)
1+
# node-nethernet
2+
[![NPM version](https://img.shields.io/npm/v/node-nethernet.svg?logo=npm)](http://npmjs.com/package/node-nethernet)
3+
[![Build Status](https://img.shields.io/github/actions/workflow/status/PrismarineJS/node-nethernet/ci.yml.svg?label=CI&logo=github)](https://github.com/PrismarineJS/node-nethernet/actions?query=workflow%3A%22CI%22)
4+
[![Try it on gitpod](https://img.shields.io/static/v1.svg?label=try&message=on%20gitpod&color=brightgreen&logo=gitpod)](https://gitpod.io/#https://github.com/PrismarineJS/node-nethernet)
55
[![GitHub Sponsors](https://img.shields.io/github/sponsors/PrismarineJS)](https://github.com/sponsors/PrismarineJS)
66

77
[![Official Discord](https://img.shields.io/static/v1.svg?label=OFFICIAL&message=DISCORD&color=blue&logo=discord&style=for-the-badge)](https://discord.gg/GsEFRM8)
88

9+
WIP
910

1011
A template repository to make it easy to create new prismarine repo
1112

1213
## Usage
1314

1415
```js
15-
const template = require('prismarine-template')
16+
const template = require('nethernet')
1617

1718
template.helloWorld()
1819
```

example.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const template = require('prismarine-template')
1+
const template = require('node-nethernet')
22

33
template.helloWorld()

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "prismarine-template",
3-
"version": "1.0.0",
4-
"description": "A template repository to make it easy to create new prismarine repo",
2+
"name": "nethernet",
3+
"version": "0.0.1",
4+
"description": "(WIP) Minecraft Bedrock nethernet protocol",
55
"main": "index.js",
66
"scripts": {
77
"test": "mocha --reporter spec --exit",
@@ -11,7 +11,7 @@
1111
},
1212
"repository": {
1313
"type": "git",
14-
"url": "git+https://github.com/PrismarineJS/prismarine-template.git"
14+
"url": "git+https://github.com/PrismarineJS/node-nethernet.git"
1515
},
1616
"keywords": [
1717
"prismarine",
@@ -20,11 +20,11 @@
2020
"author": "Romain Beaumont",
2121
"license": "MIT",
2222
"bugs": {
23-
"url": "https://github.com/PrismarineJS/prismarine-template/issues"
23+
"url": "https://github.com/PrismarineJS/node-nethernet/issues"
2424
},
25-
"homepage": "https://github.com/PrismarineJS/prismarine-template#readme",
25+
"homepage": "https://github.com/PrismarineJS/node-nethernet#readme",
2626
"devDependencies": {
27-
"prismarine-template": "file:.",
27+
"node-nethernet": "file:.",
2828
"standard": "^17.0.0",
2929
"mocha": "^10.0.0"
3030
}

0 commit comments

Comments
 (0)