New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

express-sweet

Package Overview
Dependencies
Maintainers
0
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-sweet - npm Package Versions

1
6

1.0.22

Diff

Changelog

Source

[1.0.22] - 2022/7/27

Added

  • You can now set hook functions that are called before the view is rendered. Hook functions can be used, for example, to set local variables that can be used in the view.
takuya-motoshima
published 1.0.21 •

Changelog

Source

[1.0.21] - 2022/526

Added

  • Added an option to the face indexing method to retrieve details (gender, emotion, age group) of indexed faces.
takuya-motoshima
published 1.0.20 •

Changelog

Source

[1.0.20] - 2022/5/25

Added

  • Added an option to get details (emotion, gender, age group) to the face detection method.
takuya-motoshima
published 1.0.19 •

Changelog

Source

[1.0.19] - 2022/5/20

Added

  • Add date format helper to view.
takuya-motoshima
published 1.0.18 •

Changelog

Source

[1.0.18] - 2022/5/18

Added

  • User authentication sessions can now be stored in redis. To use redis for session storage, simply add the following option to config/authentication.js. Please give it a try.
    config/authentication.js:
    session_store: 'redis',
    redis_host: 'redis://localhost:6379'
    
takuya-motoshima
published 1.0.17 •

Changelog

Source

[1.0.17] - 2022/5/17

Changed

  • Updated documentation and refactored variable names.
takuya-motoshima
published 1.0.16 •

Changelog

Source

[1.0.16] - 2022/2/14

Fixed

  • I forgot to include the build file, so I added the build file.
takuya-motoshima
published 1.0.15 •

Changelog

Source

[1.0.15] - 2022/2/14

Changed

  • Changed the type of 'config/authentication.js#allow_unauthenticated' from'string[]' to'(string|RegExp)[]}'.
takuya-motoshima
published 1.0.14 •

Changelog

Source

[1.0.14] - 2022/1/17

Changed

  • empty view helper can now check any type. Previously I could only check arrays.
takuya-motoshima
published 1.0.13 •

Changelog

Source

[1.0.13] - 2021/12/13

Added

  • The model's begin method now accepts the transaction option.
    let transaction;
    try {
      transaction = await BookModel.begin({
        isolationLevel: BookModel.Transaction.ISOLATION_LEVELS.REPEATABLE_READ,
        type: BookModel.Transaction.TYPES.DEFERRED,
      });
      const book = await BookModel.findOne({where: {id: 1}}, {transaction});
      book.title = 'When Im Gone';
      await book.save({transaction});
      await transaction.commit();
    
      // Load updated data.
      await book.reload();
    } catch (error) {
      if (transaction)
        await transaction.rollback();
    }
    
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