Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
rclnodejs-testing
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oleg Dzhimiev
rclnodejs-testing
Commits
5a0ac704
Commit
5a0ac704
authored
Jan 10, 2019
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fav
parent
310fad7e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
1 deletion
+6
-1
app.js
app.js
+3
-0
package.json
package.json
+2
-1
favicon.ico
public/favicon.ico
+0
-0
index.html
public/index.html
+1
-0
No files found.
app.js
View file @
5a0ac704
...
...
@@ -2,6 +2,7 @@ const express = require('express');
const
path
=
require
(
'path'
);
const
cookieParser
=
require
(
'cookie-parser'
);
const
logger
=
require
(
'morgan'
);
const
favicon
=
require
(
'serve-favicon'
);
const
indexRouter
=
require
(
'./routes/index'
);
...
...
@@ -12,6 +13,8 @@ app.use(express.json());
app
.
use
(
express
.
urlencoded
({
extended
:
false
}));
app
.
use
(
cookieParser
());
app
.
use
(
favicon
(
path
.
join
(
__dirname
,
'public'
,
'favicon.ico'
)));
app
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
'public'
)));
app
.
use
(
'/node_modules'
,
express
.
static
(
path
.
join
(
__dirname
,
'node_modules'
)));
...
...
package.json
View file @
5a0ac704
...
...
@@ -11,6 +11,7 @@
"
debug
"
:
"
~2.6.9
"
,
"
express
"
:
"
~4.16.0
"
,
"
jquery
"
:
"
^3.3.1
"
,
"
morgan
"
:
"
~1.9.0
"
"
morgan
"
:
"
~1.9.0
"
,
"
serve-favicon
"
:
"
^2.5.0
"
}
}
public/favicon.ico
View replaced file @
310fad7e
View file @
5a0ac704
72.6 KB
|
W:
|
H:
4.19 KB
|
W:
|
H:
2-up
Swipe
Onion skin
public/index.html
View file @
5a0ac704
<!DOCTYPE HTML>
<html
lang=
"en"
>
<head>
<link
rel=
"icon"
href=
"favicon.ico"
>
<meta
charset=
"utf-8"
/>
<title>
ROS2 Testing
</title>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment