mstrYoda commented on issue #187:
URL: https://github.com/apache/age-viewer/issues/187#issuecomment-3188899290

   > > The first part i have solved installing babel/runtime by itself throught 
a command `npm install @babel/runtime`
   > > But the second i still have issues with, i don't know why it happens
   > 
   > Thanks for your comment. I already solved my problem by searching the 
literature and using AI. Your comment is true for solving the first part of the 
problem. Should install:
   > 
   > > npm install @babel/runtime
   > 
   > and then:
   > 
   > > cd $HOME/age-viewer/frontend/src/components/cypherresult/presentations/
   > > Open CypherResultTable.jsx and find line 23. Replace the problematic 
import:
   > > // OLD (problematic line):
   > > import { uuid } from 'cytoscape/src/util';
   > 
   > // NEW (working solution): import uuid from 'react-uuid';
   > 
   > and then:
   > 
   > > cd $HOME/age-viewer/frontend
   > > npm install react-uuid
   > 
   > Finally:
   > 
   > > npm run start
   > 
   > This completely solves the error and opens the fully functional browser 
for using.
   
   Even after this I got following error:
   
   ```bash
   
   /Desktop/age-viewer/frontend/node_modules/react-scripts/scripts/start.js:19
     throw err;
     ^
   
   Error: error:0308010C:digital envelope routines::unsupported
       at new Hash (node:internal/crypto/hash:79:19)
       at Object.createHash (node:crypto:139:10)
       at module.exports 
(/Desktop/age-viewer/frontend/node_modules/webpack/lib/util/createHash.js:135:53)
       at NormalModule._initBuildHash 
(/Desktop/age-viewer/frontend/node_modules/webpack/lib/NormalModule.js:417:16)
       at 
/Desktop/age-viewer/frontend/node_modules/webpack/lib/NormalModule.js:452:10
       at 
/Desktop/age-viewer/frontend/node_modules/webpack/lib/NormalModule.js:323:13
       at 
/Desktop/age-viewer/frontend/node_modules/loader-runner/lib/LoaderRunner.js:367:11
       at 
/Desktop/age-viewer/frontend/node_modules/loader-runner/lib/LoaderRunner.js:233:18
       at context.callback 
(/Desktop/age-viewer/frontend/node_modules/loader-runner/lib/LoaderRunner.js:111:13)
       at 
/Desktop/age-viewer/frontend/node_modules/babel-loader/lib/index.js:59:103 {
     opensslErrorStack: [
       'error:03000086:digital envelope routines::initialization error',
       'error:0308010C:digital envelope routines::unsupported'
     ],
     library: 'digital envelope routines',
     reason: 'unsupported',
     code: 'ERR_OSSL_EVP_UNSUPPORTED'
   }
   
   Node.js v23.3.0
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to