FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/tutorials/backend/example-nestjs/src/file.service.ts at main · mdlufy/JavaScript · GitHub
mdlufy
/
JavaScript
Public
forked from
iu5git/JavaScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
tutorials
/
backend
/
example-nestjs
/
src
/
file.service.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (29 loc) · 798 Bytes
Breadcrumbs
JavaScript
/
tutorials
/
backend
/
example-nestjs
/
src
/
file.service.ts
Copy path
File metadata and controls
38 lines (29 loc) · 798 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import
{
Injectable
}
from
'@nestjs/common'
;
import
*
as
fs
from
'fs'
;
import
*
as
path
from
'path'
;
export
interface
FileAccessor
{
filePath
:
string
;
}
@
Injectable
(
)
export
class
FileService
<
I
>
{
protected
readonly
filePath
=
path
.
resolve
(
__dirname
)
;
constructor
(
filePath
?:
string
)
{
if
(
filePath
)
{
this
.
filePath
=
path
.
resolve
(
__dirname
,
filePath
)
;
}
}
public
read
<
T
extends
I
>
(
)
:
T
{
const
data
=
fs
.
readFileSync
(
this
.
filePath
,
'utf8'
)
;
return
JSON
.
parse
(
data
)
as
T
;
}
public
add
<
T
>
(
newData
:
T
)
:
void
{
const
data
=
this
.
read
(
)
;
if
(
Array
.
isArray
(
data
)
)
{
data
.
push
(
newData
)
;
}
this
.
write
(
data
)
;
}
public
write
<
T
extends
I
>
(
data
:
T
)
:
void
{
fs
.
writeFileSync
(
this
.
filePath
,
JSON
.
stringify
(
data
,
null
,
2
)
,
'utf8'
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL