node server startup

This commit is contained in:
RonanCraft 2024-03-26 23:29:21 -04:00
parent dbde32d48d
commit d1822e6e2b
4 changed files with 27 additions and 1 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ target
*.iml
BetterRTP.wiki/
.DS_Store
.vscode/

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body></body>
</html>

0
NodeServer/main/index.js Normal file
View File

16
NodeServer/pom.xml Normal file
View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.ronancraft</groupId>
<artifactId>NodeServer</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
</project>