New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

code-textizer

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

code-textizer

Convert Code, Text and so on strings convert to Text that is recognized by javascript, typescript, c# code

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

codeTextizer

convert text to string is recognized in codes 'code' for you -> var text = 'this is 'code' for you'

install

npm inatall code-textizer

support features:

  • text convert to string
  • string can be recognize in javascript, typescript, c# code
  • support API
  • support CLI

dependency:

  • nodejs 6.x higher
  • npm:
    • path
    • fs

command line

node textizer input={inputfilePath} out={outputFilePath} vn={valuableName} quote={quote}

  • input : input file path to convert, ex) c:/test.js
    function getRandomString(prifix='') {
    let r = Math.random().toString(36).substring(5);
    return prifix + r;
    }
    
  • out : out file path ex) c:/out.js
    var code = 'function getRandomString(prifix=\'\') {
    let r = Math.random().toString(36).substring(5);
    return prifix + r;
    }'
    
  • vn(optional) : valuableName to assing string vlaues, if ignore this param, textizer make string only code
    var valuableName = '
    
  • quote: use single quote or double quote, default single quote

APIS

  • codeTextizer Support API
    • convert({valuableName}, {convertBuffer}, {isSingleQuote})
      • ValuableName: optional, if you want code string like 'var code = '\n const fs=require('fs') ......', 'var code =' is attached
      • converBuffer: code strings
      • isSingleQuite: ture use ', false use "
const convert = require('codeTextizer');
let codeText = convert('codes', fs.readFileSync('test.js'), true );
.
.
.
OUTPUT
codes = '\nrequire = (\'fs\') ...............'

Keywords

code

FAQs

Package last updated on 01 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts