Skip to content Skip to sidebar Skip to footer

Build Dev Failed: Cannot Set Property 'filesystem' Of Null

I am trying to run an Ionic 2 Application. I am getting following error on running ionic serve build dev failed: Cannot set property 'fileSystem' of null The complete log is as b

Solution 1:

Update your ionic app scripts to the latest version. It is 1.0.0 for RC5 release.

npm install @ionic/app-scripts@latest --save-dev.

As suggested, check the package.json from here.

Run npm install

Solution 2:

This worked for me: In your project go to yourProjectname\node_modules\@typesoject

Then install

$ npm install pouchdb @types/pouchdb

You can now use

importPouchDB from'pouchdb';

as explained here here

Solution 3:

I also faced this issue for Ionic2 application. When i tried to run the application in ripple browser it was telling "You're almost ready! If you're seeing this page, then you still need to install the NPM Task Runner extension for Visual Studio and run this app again. You can download the extension from:".

I struggled a lot to resolve the issue i was using visual studio 2015 Update3.

Finally i got a solution issue was with ionic "@ionic/app-scripts".

To resolve the issue i fallowed the below steps.

1] execute command "npm uninstall -g ionic" in Command Prompt. 2] Update the version of @ionic/app-scripts to 1.1.4 i.e "@ionic/app-scripts": "1.1.4" in package.json file and Save the file. 3] execute command "npm install -g ionic" in Command Prompt. it will give some warning don't need to wary about it. 4] again i have done Restore Packages by right clicking on the packages.json file. 5] next go to view menu in the visual studio and select other windows from there select Task Runner Explorer. 6] Right Click on ionic:build select Binding > Before Build(it will make the all the ionic component to build first before deploying to www directory.

Make sure you have deleted the node_module folder before starting these steps.

That's all everything got set to me application started working fine.

I hope it will help some one. Second solution is instead black project take sidemenu project even if you fail do the above mentioned steps and restart the visual studio and create new project with sidemenu it will work fine.

Post a Comment for "Build Dev Failed: Cannot Set Property 'filesystem' Of Null"