问题
I'm using Angular 7.
I tried to use fs module on Typescript for open a directory. I always have this error: "Module not found: Error: Can't resolve fs" types@node and file-system are installed.
My code:
import {Component, OnInit} from '@angular/core';
import * as fs from 'file-system';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
title = 'my-app';
constructor() {
}
ngOnInit() {
console.log(fs);
}
}
Can you help me ?
Node : v10.14.0 Npm: v6.4.1 Angular CLI: v7.1.1
回答1:
Try this:
import * as fs from 'fs';
Hopefully this helps somewhat.
来源:https://stackoverflow.com/questions/53656426/angular-7-how-to-use-fs-module