404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.224.31.75: ~ $
#!/usr/bin/env node

var fs = require('fs')
var marked = require('marked-man')
var npm = require('../lib/npm.js')
var args = process.argv.slice(2)
var src = args[0]
var dest = args[1] || src

fs.readFile(src, 'utf8', function (err, data) {
  if (err) return console.log(err)

  function replacer (match, p1) {
    return 'npm help ' + p1.replace(/npm /, '')
  }

  var result = data.replace(/@VERSION@/g, npm.version)
    .replace(/^---([\s\S]+?)---/g, '')
    .replace(/\[([^\]]+)\]\(\/cli-commands\/([^)]+)\)/g, replacer)
    .replace(/\[([^\]]+)\]\(\/configuring-npm\/([^)]+)\)/g, replacer)
    .replace(/\[([^\]]+)\]\(\/using-npm\/([^)]+)\)/g, replacer)
    .replace(/(# .*)\s+(## (.*))/g, '$1 - $3')
    .trim()

  fs.writeFile(dest, marked(result), 'utf8', function (err) {
    if (err) return console.log(err)
  })
})

Filemanager

Name Type Size Permission Actions
changelog.js File 3 KB 0644
clean-old.sh File 4.17 KB 0755
dep-update File 294 B 0755
dev-dep-update File 292 B 0755
docs-build.js File 825 B 0644
gen-changelog File 420 B 0755
gen-dev-ignores.js File 350 B 0644
install.sh File 5.47 KB 0755
maketest File 1.8 KB 0755
pr File 3.96 KB 0755
publish-tag.js File 151 B 0644
release.sh File 889 B 0644
relocate.sh File 673 B 0755
update-authors.sh File 197 B 0755
update-dist-tags.js File 3.46 KB 0644