GithubHelp home page GithubHelp logo

Comments (2)

bavovanachte avatar bavovanachte commented on August 25, 2024

Hi!

I don't normally install Node or NPM on my machines.

I don't think you're the only one, so I think it's worth supporting it somehow. I'd be hesitant to just flip the switch on this entirely, but I think we can add an option for it.

Is your approach similar to this one? https://github.com/mvonbun/docker-wavedrom-cli. I'm asking cause I'd like to reproduce the issue and add a link in the readme, as this will likely help others as well.

from sphinx-wavedrom.

bradleyharden avatar bradleyharden commented on August 25, 2024

@bavovanachte, sorry for the delay.

I think my approach is a bit simpler than the one you linked, but I'm not terribly familiar with the NPM ecosystem, so I don't know how they compare.

Here is my Dockerfile:

FROM docker.io/library/node:12.0

RUN npm -g config set user root \
 && npm i wavedrom-cli -g

ENTRYPOINT ["wavedrom-cli"]

And here is my wrapper script:

#!/bin/bash

args=("$@")
for i in "${!args[@]}"; do
  if [[ "${args[$i]}" = /* ]]; then
    args[$i]=$(realpath --relative-to="$PWD" "${args[$i]}")
  fi
done
podman run --rm -v "$PWD":/wavedrom -w /wavedrom localhost/wavedrom-cli ${args[@]}

from sphinx-wavedrom.

Related Issues (20)

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.