I haven’t tried yet, just reinstalled npm

Posts made by matroskin
-
RE: 1.2 update failed
node.js was removed and installed again
it helps
thanks to @Hawkeye64
so, solved -
RE: 1.2 update failed
I asked my friend to try
npm i @quasar/app
at empty dir
here is result:
-
RE: 1.2 update failed
if I try to create new app from quasar cli:
Quasar CLI · Generated "test". [*] Installing project dependencies ... npm ERR! Unexpected end of JSON input while parsing near '...shint":"2.8.x","nock"' npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\User\AppData\Roaming\npm-cache\_logs\2019-10-11T12_18_25_052Z-debug.log npm install FAILED... Possible temporary npm registry issues? Please try again later...
-
1.2 update failed
npm i @quasar/app npm ERR! Unexpected end of JSON input while parsing near '...shint":"2.8.x","nock"' npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\User\AppData\Roaming\npm-cache\_logs\2019-10-11T11_54_27_497Z-debug.log
What’s wrong?
here is log file
https://drive.google.com/open?id=1W_MymquTHwlje6Vqvsuzb__q-vPRJKo_JAtU2k0_qgE -
associate links with app
but also I have SPA at web site
www.mysite.com
but when user openwww.mysite.com
at his mobile I want that the app run
I can add
<data android:host="www.mysite.com" android:scheme="https"/>
to manifest
but what url should I write there? am I right, that url of site inside app is localhost? -
RE: Site Analytics [SOLVED BY matroskin]
metrika.yandex.ru for web
amplitude.com for app (the best) -
RE: How to upload photos just taken with the cordova camera plugin
Hello, please help
file with keymedia
is sending as[object Object]
, not as(binary)
so at backend $_FILES are emptycaptureImage(source) { source = source || 1; let cameraConfig = { quality: 50, sourceType: source, destinationType: navigator.camera.DestinationType.FILE_URI, encodingType: navigator.camera.EncodingType.JPEG, mediaType: navigator.camera.MediaType.PICTURE, cameraDirection: navigator.camera.Direction.BACK }; navigator.camera.getPicture( data => { this.processPicture(data) }, error => { this.$q.notify(error) }, cameraConfig ) }, getFileEntry (fileURL) { return new Promise((resolve, reject) => { window.resolveLocalFileSystemURL( fileURL, fileEntry => { resolve(fileEntry) }, err => { reject(err) } ) }) }, async getFile(fileEntry) { try { return await new Promise((resolve, reject) => fileEntry.file(resolve, reject)); } catch (err) { console.log(err); } }, async processPicture (path) { const fileEntry = await this.getFileEntry(path); const file = await this.getFile(fileEntry); this.upload(file) }, upload(file) { let data = new FormData(), headers = { 'Content-Type': 'multipart/form-data' }; data.append('media', file); this.$axios.post(this.sendRoute, data, { headers: headers }) },
-
emphasis in markdown
how to disable emphasis in markdown?
link below, I turn all switchers on, but formatting didn’t disappear
https://quasarframework.github.io/app-extension-qmarkdown/demo/emphasis -
RE: markdown and chat
Yep, but messages is Array, so I should use v-for in default slot of
q-chat-message
, am I right? -
RE: markdown and chat
nevertheless, I see in docs how to use markdown component, like this
<q-markdown>text</q-markdown>
but how can I use it in methods? -
transition of components
What components have transitions?
It does not work
https://jsfiddle.net/psprokofiev/dtg356fq/2/ -
Auth package
Hi,
tell what package do you use to auth?
I use websanova/vue-auth, but it doesn’t work with safari (