Giter Site home page Giter Site logo

Comments (2)

robertrossmann avatar robertrossmann commented on July 18, 2024

I think you need to tell ReadableStreamBuffer that you are done putting stuff into it, by calling stream.stop() after calling stream.put(). nodestream relies on the end event to resolve the promise because that's the "official" way of signaling the reader that there is no more data to be read.

See the docs. Let me know if this resolved your problem.

from nodestream.

mregydev avatar mregydev commented on July 18, 2024

@robertrossmann a great thank for your answer but it seems that resolve is done before file is created

const Nodestream = require('nodestream')

const fs=require('fs')

const {ReadableStreamBuffer} =require('stream-buffers')

const nodestream = new Nodestream({
  adapter: 'filesystem',
  config: {
       root: [__dirname, '.storage']
  }
})

const stream=new ReadableStreamBuffer({})

nodestream.upload(stream).then(res=>{
//always print file not exist inspite file is created with right content after that   
 if(fs.existsSync(`.storage/${res.location}`))
    {
        console.log('file exist')
    }
    else
    {
        console.log('file not exist')
    }
}).catch(ex=>console.log(ex.message))


stream.put(fs.readFileSync('toread.txt').toString('base64'),'base64')

stream.stop()

from nodestream.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.