Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@frontender-magazine/builder

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frontender-magazine/builder

build an article from url

  • 1.4.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Builder

Этот билдер создает из url статьи репозиторий на гитхабе и выполняет все сопутствующие действия.

Environment variables

createCards, createRepo, initGithub, uploadToRepo

  • GITHUB_TOKEN

codepenTransform and codepenTransformIFrame

  • GITHUB_LOGIN
  • GITHUB_PASSW

detectLanguage

  • DETECTLANGUAGE_KEY

getTags

  • AWSAccessKeyId
  • AWSSecretKey

You may ignore build stages and specific plugins

this.skip = {
      plugins: [
        {
          name: 'TMPDir', // plugin TMPDir
          stages: 'after', // will be ignored on after stage
        },
        { name: 'uploadToRepo' }, // plugin uploadToRepo will be ignored on all stages
      ],
      stages: [
        'github:before', // stage will be ignored
      ],
    };

You may create plugins

// File: /source/plugins/pluginName/pluginName.js
module.exports = deepmerge(pluginBase, {
  meta: {
    name: 'PluginName', // plugin name, required
    dependency: ['PluginDep', 'PluginDep:StageName'], // plugin dependency, optional
    domain: 'https://smashingmagazine.com' // plugin valid only for specific domain, optional
  },
  StageName: (unmodified) => {return modified;}, // methods for stage 'StageName'
  [['StageName:before']]: (unmodified) => {return modified;}, // methods for stage 'StageName:before'
});

Keywords

FAQs

Package last updated on 25 Jun 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc